3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/pijul/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2020-11-09 12:03:31 +00:00
{ stdenv
, fetchCrate
, rustPlatform
, pkg-config
, clang
, libclang
, libsodium
, openssl
, xxHash
, zstd
, darwin
, gitImportSupport ? true
, libgit2 ? null
}:
rustPlatform.buildRustPackage rec {
2019-08-31 12:41:23 +01:00
pname = "pijul";
2020-11-16 19:49:15 +00:00
version = "1.0.0-alpha.3";
2017-03-20 07:19:05 +00:00
2020-11-09 12:03:31 +00:00
src = fetchCrate {
inherit version pname;
2020-11-16 19:49:15 +00:00
sha256 = "0bz38vvzjrplb2mgcypg2p4kq33v6m58yivg15s2ghr7ly9k5ybx";
2017-03-20 07:19:05 +00:00
};
2020-11-16 19:49:15 +00:00
cargoSha256 = "0p9djvdjzyjzsn3fyw6f74fix39s3y92246cgzcqhc1qlwwz67rl";
2020-11-09 12:03:31 +00:00
cargoBuildFlags = stdenv.lib.optional gitImportSupport "--features=git";
LIBCLANG_PATH = "${libclang}/lib";
2017-03-20 07:19:05 +00:00
doCheck = false;
2020-11-09 12:03:31 +00:00
nativeBuildInputs = [ pkg-config clang ];
buildInputs = [ openssl libclang libsodium xxHash zstd ]
++ (stdenv.lib.optionals gitImportSupport [ libgit2 ])
++ (stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
CoreServices Security SystemConfiguration
]));
2017-06-07 09:24:44 +01:00
2017-03-20 07:19:05 +00:00
meta = with stdenv.lib; {
description = "A distributed version control system";
homepage = "https://pijul.org";
2017-03-20 07:19:05 +00:00
license = with licenses; [ gpl2Plus ];
2020-11-09 12:03:31 +00:00
maintainers = with maintainers; [ gal_bolle dywedir ];
2017-03-20 07:19:05 +00:00
};
}