pijul: use buildFeatures

figsoda eb97241d f8f45750

+2 -2
+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 ])); 34 35 meta = with lib; { 36 description = "A distributed version control system";
··· 22 23 cargoSha256 = "sha256-j9xf97qPdhtakIwhAql0/Go5fPxlyWKAVLk5CMBfAbs="; 24 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";