tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pijul: use buildFeatures
figsoda
4 years ago
eb97241d
f8f45750
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
pijul
default.nix
+2
-2
pkgs/applications/version-management/pijul/default.nix
···
22
23
cargoSha256 = "sha256-j9xf97qPdhtakIwhAql0/Go5fPxlyWKAVLk5CMBfAbs=";
24
25
-
cargoBuildFlags = lib.optional gitImportSupport "--features=git";
26
-
27
doCheck = false;
28
nativeBuildInputs = [ pkg-config ];
29
buildInputs = [ openssl libsodium xxHash zstd ]
···
31
++ (lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
32
CoreServices Security SystemConfiguration
33
]));
0
0
34
35
meta = with lib; {
36
description = "A distributed version control system";
···
22
23
cargoSha256 = "sha256-j9xf97qPdhtakIwhAql0/Go5fPxlyWKAVLk5CMBfAbs=";
24
0
0
25
doCheck = false;
26
nativeBuildInputs = [ pkg-config ];
27
buildInputs = [ openssl libsodium xxHash zstd ]
···
29
++ (lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
30
CoreServices Security SystemConfiguration
31
]));
32
+
33
+
buildFeatures = lib.optional gitImportSupport "git";
34
35
meta = with lib; {
36
description = "A distributed version control system";