Merge pull request #249172 from figsoda/ztags

ztags: init at unstable-2023-08-03
This commit is contained in:
Jonas Heinrich 2023-08-15 09:25:12 +02:00 committed by GitHub
commit 8353344d32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, stdenv
, fetchFromGitHub
, zig_0_11
}:
stdenv.mkDerivation {
pname = "ztags";
version = "unstable-2023-08-03";
src = fetchFromGitHub {
owner = "gpanders";
repo = "ztags";
rev = "6ef039047f6580772c5ff97e8770d919dc07a4fa";
hash = "sha256-WuDEHzNU3I4VPHEAkRdIUE5LPbQEKbUnITdFutGV58Y=";
};
nativeBuildInputs = [
zig_0_11.hook
];
meta = with lib; {
description = "Generate tags files for Zig projects";
homepage = "https://github.com/gpanders/ztags";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
mainProgram = "ztags";
inherit (zig_0_11.meta) platforms;
};
}

View file

@ -20342,6 +20342,8 @@ with pkgs;
zon2nix = callPackage ../tools/nix/zon2nix { };
ztags = callPackage ../development/tools/misc/ztags { };
### DEVELOPMENT / LIBRARIES
a52dec = callPackage ../development/libraries/a52dec { };