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