pijul: use buildFeatures

figsoda eb97241d f8f45750

+2 -2
+2 -2
pkgs/applications/version-management/pijul/default.nix
··· 22 22 23 23 cargoSha256 = "sha256-j9xf97qPdhtakIwhAql0/Go5fPxlyWKAVLk5CMBfAbs="; 24 24 25 - cargoBuildFlags = lib.optional gitImportSupport "--features=git"; 26 - 27 25 doCheck = false; 28 26 nativeBuildInputs = [ pkg-config ]; 29 27 buildInputs = [ openssl libsodium xxHash zstd ] ··· 31 29 ++ (lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ 32 30 CoreServices Security SystemConfiguration 33 31 ])); 32 + 33 + buildFeatures = lib.optional gitImportSupport "git"; 34 34 35 35 meta = with lib; { 36 36 description = "A distributed version control system";