mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
crumbs: init at version 0.0.3
This commit is contained in:
parent
4801fc265f
commit
be04b0d977
33
pkgs/applications/misc/crumbs/default.nix
Normal file
33
pkgs/applications/misc/crumbs/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "crumbs";
|
||||
version = "0.0.3";
|
||||
|
||||
src = fetchFromGitHub
|
||||
{ owner = "fasseg";
|
||||
repo = "crumbs";
|
||||
rev = version;
|
||||
sha256 = "0jjvydn4i4n9xv8vsal2jxpa95mk2lw6myv0gx9wih242k9vy0l7";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
sed -i 's|gfind|find|' crumbs-completion.fish
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/bash-completion/completions
|
||||
mkdir -p $out/share/fish/vendor_completions.d
|
||||
|
||||
cp crumbs-completion.bash $out/share/bash-completion/completions/crumbs
|
||||
cp crumbs-completion.fish $out/share/fish/vendor_completions.d/crumbs.fish
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib;
|
||||
{ description = "Bookmarks for the command line";
|
||||
homepage = https://github.com/fasseg/crumbs;
|
||||
license = licenses.wtfpl;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ thesola10 ];
|
||||
};
|
||||
}
|
|
@ -696,6 +696,8 @@ in
|
|||
|
||||
cozy = callPackage ../applications/audio/cozy-audiobooks { };
|
||||
|
||||
crumbs = callPackage ../applications/misc/crumbs { };
|
||||
|
||||
deskew = callPackage ../applications/graphics/deskew { };
|
||||
|
||||
detect-secrets = python3Packages.callPackage ../development/tools/detect-secrets { };
|
||||
|
|
Loading…
Reference in a new issue