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