Merge pull request #276298 from r-ryantm/auto-update/star-history

star-history: 1.0.15 -> 1.0.16

authored by Nick Cao and committed by GitHub 1373260b 3da53eb0

+6 -8
+5 -5
pkgs/tools/misc/star-history/default.nix
··· 1 { lib 2 , rustPlatform 3 , fetchCrate 4 , pkg-config 5 , openssl 6 , stdenv 7 - , Security 8 }: 9 10 rustPlatform.buildRustPackage rec { 11 pname = "star-history"; 12 - version = "1.0.15"; 13 14 src = fetchCrate { 15 inherit pname version; 16 - sha256 = "sha256-9/r01j/47rbgmXQy9qVOeY1E3LDMe9A/1SOB2l9zpJU="; 17 }; 18 19 - cargoSha256 = "sha256-kUpGBtgircX8/fACed4WO7rHTCah+3BFuQQV/A5pivg="; 20 21 nativeBuildInputs = [ pkg-config ]; 22 23 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ 24 - Security 25 ]; 26 27 meta = with lib; {
··· 1 { lib 2 , rustPlatform 3 + , darwin 4 , fetchCrate 5 , pkg-config 6 , openssl 7 , stdenv 8 }: 9 10 rustPlatform.buildRustPackage rec { 11 pname = "star-history"; 12 + version = "1.0.16"; 13 14 src = fetchCrate { 15 inherit pname version; 16 + sha256 = "sha256-ChUZf8aohDOmNKPgn9+i0NNZ4rKJsXQPK6IMqWf0NQc="; 17 }; 18 19 + cargoHash = "sha256-RsBWmEe4D+m3hxE1ryQ5aZb2uDax519qjQoIK7xStPw="; 20 21 nativeBuildInputs = [ pkg-config ]; 22 23 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ 24 + darwin.apple_sdk.frameworks.SystemConfiguration 25 ]; 26 27 meta = with lib; {
+1 -3
pkgs/top-level/all-packages.nix
··· 30003 30004 stdmanpages = callPackage ../data/documentation/std-man-pages { }; 30005 30006 - star-history = callPackage ../tools/misc/star-history { 30007 - inherit (darwin.apple_sdk.frameworks) Security; 30008 - }; 30009 30010 starfetch = callPackage ../tools/misc/starfetch { }; 30011
··· 30003 30004 stdmanpages = callPackage ../data/documentation/std-man-pages { }; 30005 30006 + star-history = callPackage ../tools/misc/star-history { }; 30007 30008 starfetch = callPackage ../tools/misc/starfetch { }; 30009