pizauth: 1.0.11 -> 1.1.0 (#529714)

This commit is contained in:
Doron Behar
2026-06-09 15:22:34 +00:00
committed by GitHub
+12 -3
View File
@@ -8,16 +8,25 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "pizauth";
version = "1.0.11";
version = "1.1.0";
src = fetchFromGitHub {
owner = "ltratt";
repo = "pizauth";
tag = "pizauth-${finalAttrs.version}";
hash = "sha256-e9YBeYMC9tfxZoXZi/QBW3FO5V6BAe7RSvVWs7rv0PI=";
hash = "sha256-VL58v/mBwFwDmF4Xg43bzitcBCsPsEwEaLKqV5X9rpg=";
};
cargoHash = "sha256-9cDVbDCb8vY6KxreyiMX3gp13bXZpxTQOwYbk6TEVpc=";
cargoHash = "sha256-pxzPcieUXE3VOyGNDaeDHUQPayRDZXpW57VWMejlZ4k=";
buildFeatures = lib.optionals stdenv.hostPlatform.isLinux [
"systemd"
];
preConfigure = ''
substituteInPlace lib/systemd/user/pizauth.service \
--replace-fail /usr/bin/ ''${!outputBin}/bin/
'';
postInstall = ''
make PREFIX=$out install ${lib.optionalString stdenv.hostPlatform.isLinux "install-systemd"}