1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

Merge pull request #58960 from Thesola10/patch-1

crumbs: init at version 0.0.3
This commit is contained in:
Aaron Andersen 2019-04-19 06:25:50 -04:00 committed by GitHub
commit e700ef2068
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 0 deletions

View file

@ -4823,6 +4823,15 @@
github = "the-kenny";
name = "Moritz Ulrich";
};
thesola10 = {
email = "thesola10@bobile.fr";
github = "thesola10";
keys = [{
longkeyid = "rsa4096/0x89245619BEBB95BA";
fingerprint = "1D05 13A6 1AC4 0D8D C6D6 5F2C 8924 5619 BEBB 95BA";
}];
name = "Karim Vergnes";
};
theuni = {
email = "ct@flyingcircus.io";
github = "ctheune";

View 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 ];
};
}

View file

@ -697,6 +697,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 { };