pizauth: 1.0.6 -> 1.0.7 (#382730)

authored by

Donovan Glover and committed by
GitHub
1f37dee1 e9e6b4c4

+6 -3
+6 -3
pkgs/by-name/pi/pizauth/package.nix
··· 3 3 rustPlatform, 4 4 fetchFromGitHub, 5 5 installShellFiles, 6 + nix-update-script, 6 7 }: 7 8 8 9 rustPlatform.buildRustPackage rec { 9 10 pname = "pizauth"; 10 - version = "1.0.6"; 11 + version = "1.0.7"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "ltratt"; 14 15 repo = "pizauth"; 15 16 tag = "pizauth-${version}"; 16 - hash = "sha256-x3LdutVrQFrkXvbGPVzBV7Y8P9okKgv2rh2YdnDXvsc="; 17 + hash = "sha256-lvG50Ej0ius4gHEsyMKOXLD20700mc4iWJxHK5DvYJc="; 17 18 }; 18 19 19 20 useFetchCargoVendor = true; 20 - cargoHash = "sha256-5xrPCGvWHceZYPycQdH1wwOH6tmJxHBshOE5866YiKg="; 21 + cargoHash = "sha256-WyQIk74AKfsv0noafCGMRS6o+Lq6CeP99AFSdYq+QHg="; 21 22 22 23 nativeBuildInputs = [ installShellFiles ]; 23 24 ··· 25 26 installShellCompletion --cmd pizauth \ 26 27 --bash share/bash/completion.bash 27 28 ''; 29 + 30 + passthru.updateScript = nix-update-script { }; 28 31 29 32 meta = { 30 33 description = "Command-line OAuth2 authentication daemon";