summary refs log tree commit diff
diff options
context:
space:
mode:
authorSilvan Mosberger <github@infinisil.com>2023-11-19 11:03:47 +0100
committerGitHub <noreply@github.com>2023-11-19 11:03:47 +0100
commit94fd4c80dd5a521d994a7109560f01b7beec8f37 (patch)
tree8f158c955231da41b48d1dc7187fc3e6ea35624d
parentfc1c762b9f9085d5a2135d70bb468c5fdfa31cd2 (diff)
parent4b8521c493a4e76b7a803bbbfa0a4c40daab5cda (diff)
downloadnixpkgs-94fd4c80dd5a521d994a7109560f01b7beec8f37.tar
nixpkgs-94fd4c80dd5a521d994a7109560f01b7beec8f37.tar.gz
nixpkgs-94fd4c80dd5a521d994a7109560f01b7beec8f37.tar.bz2
nixpkgs-94fd4c80dd5a521d994a7109560f01b7beec8f37.tar.lz
nixpkgs-94fd4c80dd5a521d994a7109560f01b7beec8f37.tar.xz
nixpkgs-94fd4c80dd5a521d994a7109560f01b7beec8f37.tar.zst
nixpkgs-94fd4c80dd5a521d994a7109560f01b7beec8f37.zip
Merge pull request #268389 from tweag/update/nixdoc
-rw-r--r--pkgs/tools/nix/nixdoc/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/tools/nix/nixdoc/default.nix b/pkgs/tools/nix/nixdoc/default.nix
index f7f6f4e04db..183e7f019e6 100644
--- a/pkgs/tools/nix/nixdoc/default.nix
+++ b/pkgs/tools/nix/nixdoc/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "nixdoc";
-  version = "2.5.1";
+  version = "2.6.0";
 
   src = fetchFromGitHub {
     owner = "nix-community";
     repo = "nixdoc";
     rev = "v${version}";
-    sha256 = "sha256-QgKzpFdzisWD6DZxs1LsKINBr/bSYQILpEu5RdcNgbc=";
+    sha256 = "sha256-g1PBPpvK3kg0bJEDXsifVgcl3+v54q08Ae3nZ4cJ+Xs=";
   };
 
-  cargoHash = "sha256-MztvOV1yAOgpwPYOUUZb7XHKhhhd/fvKPIFbsnMdhAQ=";
+  cargoHash = "sha256-E5SJfwGfy1DcLC0cF/5FTbVEJs/WYb2KO+OdOo2fgQk=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ darwin.Security ];
 
@@ -19,7 +19,10 @@ rustPlatform.buildRustPackage rec {
     description = "Generate documentation for Nix functions";
     homepage    = "https://github.com/nix-community/nixdoc";
     license     = [ licenses.gpl3 ];
-    maintainers = [ maintainers.asymmetric ];
+    maintainers = with maintainers; [
+      infinisil
+      asymmetric
+    ];
     platforms   = platforms.unix;
   };
 }