mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #59889 from sondr3/sondr3/git-ignore-1.0.0
git-ignore: 0.2.0 -> 1.0.0
This commit is contained in:
commit
f1c559057e
1 changed files with 12 additions and 6 deletions
|
@ -3,24 +3,30 @@
|
|||
with rustPlatform;
|
||||
|
||||
buildRustPackage rec {
|
||||
name = "git-ignore-${version}";
|
||||
version = "0.2.0";
|
||||
|
||||
cargoSha256 = "1fqfy8lnvpn5sd3l73x2p359zq4303vsrdgw3aphvy6580yjb84d";
|
||||
pname = "git-ignore";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sondr3";
|
||||
repo = "git-ignore";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1nihh5inh46r8jg9z7d6g9gqfyhrznmkn15nmzpbnzf0653dl629";
|
||||
sha256 = "0krz50pw9bkyzl78bvppk6skbpjp8ga7bd34jya4ha1xfmd8p89c";
|
||||
};
|
||||
|
||||
cargoSha256 = "0r6whz8vghhjyc5vrr0n172nghmi61zj96lk26qm0bgxqyzll1kj";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ openssl ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
];
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
preFixup = ''
|
||||
mkdir -p "$man/man/man1"
|
||||
cp target/release/build/git-ignore-*/out/git-ignore.1 "$man/man/man1/"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Quickly and easily fetch .gitignore templates from gitignore.io";
|
||||
homepage = https://github.com/sondr3/git-ignore;
|
||||
|
|
Loading…
Reference in a new issue