mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, testers
|
|
, zig_0_11
|
|
, callPackage
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "zf";
|
|
version = "0.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "natecraddock";
|
|
repo = "zf";
|
|
rev = "refs/tags/${finalAttrs.version}";
|
|
hash = "sha256-JPv/59ELh+CS1/akuLNy0qSimMEJsypPO8hiHFAOirI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
zig_0_11.hook
|
|
];
|
|
|
|
postPatch = ''
|
|
ln -s ${callPackage ./deps.nix { }} $ZIG_GLOBAL_CACHE_DIR/p
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage doc/zf.1
|
|
installShellCompletion \
|
|
--bash complete/zf \
|
|
--fish complete/zf.fish \
|
|
--zsh complete/_zf
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/natecraddock/zf";
|
|
description = "Commandline fuzzy finder that prioritizes matches on filenames";
|
|
changelog = "https://github.com/natecraddock/zf/releases/tag/${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ dit7ya figsoda mmlb ];
|
|
mainProgram = "zf";
|
|
};
|
|
})
|