about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-09-13 11:25:35 -0400
committerfigsoda <figsoda@pm.me>2023-09-13 11:29:10 -0400
commit095ba6ee28255306fb181ea7f4b9f5842a6277ff (patch)
tree145dc5180b17ceec1dd8496d1f1417cf9b80f4fe /pkgs/development/tools/misc
parentdc32d28c2fd25e4569734721b6e3d268778231cd (diff)
downloadnixlib-095ba6ee28255306fb181ea7f4b9f5842a6277ff.tar
nixlib-095ba6ee28255306fb181ea7f4b9f5842a6277ff.tar.gz
nixlib-095ba6ee28255306fb181ea7f4b9f5842a6277ff.tar.bz2
nixlib-095ba6ee28255306fb181ea7f4b9f5842a6277ff.tar.lz
nixlib-095ba6ee28255306fb181ea7f4b9f5842a6277ff.tar.xz
nixlib-095ba6ee28255306fb181ea7f4b9f5842a6277ff.tar.zst
nixlib-095ba6ee28255306fb181ea7f4b9f5842a6277ff.zip
ztags: unstable-2023-08-29 -> unstable-2023-09-07
Diff: https://github.com/gpanders/ztags/compare/87dbc4ba7993fa1537ddce942c6ce4cf90ce0809...6cdbd6dcdeda0d1ab9ad30261000e3d21b2407e6
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/ztags/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/ztags/default.nix b/pkgs/development/tools/misc/ztags/default.nix
index 5106ad68fcaa..25010cc0cc67 100644
--- a/pkgs/development/tools/misc/ztags/default.nix
+++ b/pkgs/development/tools/misc/ztags/default.nix
@@ -1,24 +1,30 @@
 { lib
 , stdenv
 , fetchFromGitHub
+, scdoc
 , zig_0_11
 }:
 
 stdenv.mkDerivation {
   pname = "ztags";
-  version = "unstable-2023-08-29";
+  version = "unstable-2023-09-07";
 
   src = fetchFromGitHub {
     owner = "gpanders";
     repo = "ztags";
-    rev = "87dbc4ba7993fa1537ddce942c6ce4cf90ce0809";
-    hash = "sha256-FZZZnTmz4mxhiRXs16A41fz0WYIg6oGM7xj2cECRkrM=";
+    rev = "6cdbd6dcdeda0d1ab9ad30261000e3d21b2407e6";
+    hash = "sha256-lff5L7MG8RJdJM/YebJKDkKfkG4oumC0HytiCUOUG5Q=";
   };
 
   nativeBuildInputs = [
+    scdoc
     zig_0_11.hook
   ];
 
+  postInstall = ''
+    zig build docs --prefix $out
+  '';
+
   meta = with lib; {
     description = "Generate tags files for Zig projects";
     homepage = "https://github.com/gpanders/ztags";