mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
Merge pull request #249172 from figsoda/ztags
ztags: init at unstable-2023-08-03
This commit is contained in:
commit
8353344d32
30
pkgs/development/tools/misc/ztags/default.nix
Normal file
30
pkgs/development/tools/misc/ztags/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -20342,6 +20342,8 @@ with pkgs;
|
||||
|
||||
zon2nix = callPackage ../tools/nix/zon2nix { };
|
||||
|
||||
ztags = callPackage ../development/tools/misc/ztags { };
|
||||
|
||||
### DEVELOPMENT / LIBRARIES
|
||||
|
||||
a52dec = callPackage ../development/libraries/a52dec { };
|
||||
|
Loading…
Reference in New Issue
Block a user