Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
74 lines
2.3 KiB
Nix
74 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
coreutils,
|
|
fetchurl,
|
|
libxcrypt,
|
|
pam,
|
|
procps,
|
|
unixtools,
|
|
util-linux,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "otpw";
|
|
version = "1.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.cl.cam.ac.uk/~mgk25/download/otpw-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-mKyjimHHcTZ3uW8kQmynBTSAwP0HfZGx6ZvJ+SzLgyo=";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -i 's/^CFLAGS.*/CFLAGS=-O2 -fPIC/' Makefile
|
|
substituteInPlace otpw-gen.c \
|
|
--replace "head -c 20 /dev/urandom 2>&1" "${coreutils}/bin/head -c 20 /dev/urandom 2>&1" \
|
|
--replace "ls -lu /etc/. /tmp/. / /usr/. /bin/. /usr/bin/." "${coreutils}/bin/ls -lu /etc/. /tmp/. / /usr/. /bin/. /usr/bin/." \
|
|
--replace "PATH=/usr/ucb:/bin:/usr/bin;ps lax" "PATH=/usr/ucb:/bin:/usr/bin;${unixtools.procps}/bin/ps lax" \
|
|
--replace "last | head -50" "${util-linux}/bin/last | ${coreutils}/bin/head -50" \
|
|
--replace "uptime;netstat -n;hostname;date;w" "${coreutils}/bin/uptime; ${unixtools.net-tools}/bin/netstat -n; ${unixtools.net-tools}/bin/hostname; ${coreutils}/bin/date; ${procps}/bin/w"
|
|
'';
|
|
|
|
buildInputs = [
|
|
libxcrypt
|
|
pam
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
|
# demologin.c:132:25: error: implicit declaration of function 'crypt' []
|
|
# 132 | if (!user || strcmp(crypt(password, user->pwd.pw_passwd),
|
|
"-Wno-error=implicit-function-declaration"
|
|
# demologin.c:132:25: error: passing argument 1 of 'strcmp' makes pointer from integer without a cast []
|
|
# 132 | if (!user || strcmp(crypt(password, user->pwd.pw_passwd),
|
|
"-Wno-error=int-conversion"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/lib/security $out/share/man/man{1,8}
|
|
cp pam_*.so $out/lib/security
|
|
cp otpw-gen $out/bin
|
|
cp *.1 $out/share/man/man1
|
|
cp *.8 $out/share/man/man8
|
|
'';
|
|
|
|
hardeningDisable = [
|
|
"stackprotector"
|
|
];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgram = "${placeholder "out"}/bin/${finalAttrs.meta.mainProgram}";
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
description = "One-time password login package";
|
|
mainProgram = "otpw-gen";
|
|
homepage = "http://www.cl.cam.ac.uk/~mgk25/otpw.html";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|