Merge pull request #254970 from figsoda/ztags

ztags: unstable-2023-08-29 -> unstable-2023-09-07
This commit is contained in:
Nick Cao 2023-09-14 09:22:44 -04:00 committed by GitHub
commit 407c4acda9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";