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-30 22:09:57 +00:00
version = "1.0.0-alpha.11";
2017-03-20 07:19:05 +00:00
2020-11-09 12:03:31 +00:00
src = fetchCrate {
inherit version pname;
2020-11-30 22:09:57 +00:00
sha256 = "1y2xgbzclmk0i98iydmqgvf6acx0v326dmj9j2hiwrld193fc4dx";
2017-03-20 07:19:05 +00:00
};
2020-11-30 22:09:57 +00:00
cargoSha256 = "0i1rr8jg34g4b8i2lvh9gy2rpfa01ma9jpcpyp5zklrzk5f1ksvf";
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
};
}