nixpkgs/pkgs/applications/version-management/pijul/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

2018-10-28 13:39:35 +03:00
{ stdenv, fetchurl, rustPlatform, darwin, openssl, libsodium, pkgconfig }:
2017-03-20 10:19:05 +03:00
with rustPlatform;
buildRustPackage rec {
name = "pijul-${version}";
2018-11-22 10:32:17 +03:00
version = "0.11.0";
2017-03-20 10:19:05 +03:00
src = fetchurl {
url = "https://pijul.org/releases/${name}.tar.gz";
2018-11-22 10:32:17 +03:00
sha256 = "e60793ab124e9054c1d5509698acbae507ebb2fab5364d964067bc9ae8b6b5e5";
2017-03-20 10:19:05 +03:00
};
2018-10-28 13:39:35 +03:00
nativeBuildInputs = [ pkgconfig ];
postInstall = ''
mkdir -p $out/share/{bash-completion/completions,zsh/site-functions,fish/vendor_completions.d}
$out/bin/pijul generate-completions --bash > $out/share/bash-completion/completions/pijul
$out/bin/pijul generate-completions --zsh > $out/share/zsh/site-functions/_pijul
$out/bin/pijul generate-completions --fish > $out/share/fish/vendor_completions.d/pijul.fish
'';
buildInputs = [ openssl libsodium ] ++ stdenv.lib.optionals stdenv.isDarwin
2017-03-20 10:19:05 +03:00
(with darwin.apple_sdk.frameworks; [ Security ]);
doCheck = false;
2017-06-07 11:24:44 +03:00
2018-11-22 10:32:17 +03:00
cargoSha256 = "1r76azmka1d76ff0ddfhzr24b0ry496qrp13945i3vs0fgzk2sdz";
2017-03-20 10:19:05 +03:00
meta = with stdenv.lib; {
description = "A distributed version control system";
homepage = https://pijul.org;
license = with licenses; [ gpl2Plus ];
maintainers = [ maintainers.gal_bolle ];
platforms = platforms.all;
};
}