lol

gptcommit: 0.5.13 -> 0.5.14

authored by

Aaron Jheng and committed by
Yt
369fdb3b 3ceeae86

+7 -5
+6 -4
pkgs/development/tools/gptcommit/default.nix
··· 5 5 , pkg-config 6 6 , nix-update-script 7 7 , Security 8 + , SystemConfiguration 8 9 , openssl 9 10 }: 10 11 11 12 let 12 13 pname = "gptcommit"; 13 - version = "0.5.13"; 14 + version = "0.5.14"; 14 15 in 15 16 rustPlatform.buildRustPackage { 16 17 inherit pname version; ··· 19 20 owner = "zurawiki"; 20 21 repo = pname; 21 22 rev = "v${version}"; 22 - sha256 = "sha256-O0dqLN2wDXRIVcb9whlzK0BJOm/qhTH+nLpCwSUObng="; 23 + hash = "sha256-xjaFr1y2Fd7IWbJlegnIsfS5/oMJYd6QTnwp7IK17xM="; 23 24 }; 24 25 25 - cargoSha256 = "sha256-JwwQaThefWhJVRJ/a0WfdKJqr/NHgll6D6Y2QaeqWsc="; 26 + cargoHash = "sha256-VZrlEJi/UPQTGFiSpZs+Do+69CY3zdqGkAnUxMYvvaw="; 26 27 27 28 nativeBuildInputs = [ pkg-config ]; 28 29 29 30 # 0.5.6 release has failing tests 30 31 doCheck = false; 31 32 32 - buildInputs = lib.optionals stdenv.isDarwin [ Security ] ++ lib.optionals stdenv.isLinux [ openssl ]; 33 + buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ] 34 + ++ lib.optionals stdenv.isLinux [ openssl ]; 33 35 34 36 passthru = { 35 37 updateScript = nix-update-script { };
+1 -1
pkgs/top-level/all-packages.nix
··· 8808 8808 gpt2tc = callPackage ../tools/text/gpt2tc { }; 8809 8809 8810 8810 gptcommit = callPackage ../development/tools/gptcommit { 8811 - inherit (darwin.apple_sdk.frameworks) Security; 8811 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 8812 8812 }; 8813 8813 8814 8814 gptman = callPackage ../tools/system/gptman { };