Files
nixpkgs/pkgs/by-name/da/datefudge/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

52 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchgit,
makeWrapper,
coreutils,
}:
stdenv.mkDerivation rec {
pname = "datefudge";
version = "1.27";
src = fetchgit {
url = "https://salsa.debian.org/debian/${pname}.git";
rev = "debian/${version}";
hash = "sha256-BN/Ct1FRZjvpkRCPpRlXmjeRvrNnuJBXwwI1P2HCisc=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ coreutils ];
postPatch = ''
substituteInPlace Makefile \
--replace "/usr" "/" \
--replace "-o root -g root" ""
substituteInPlace datefudge.sh \
--replace "@LIBDIR@" "$out/lib/"
'';
installFlags = [ "DESTDIR=$(out)" ];
postInstall = ''
chmod +x $out/lib/datefudge/datefudge.so
wrapProgram $out/bin/datefudge --prefix PATH : ${coreutils}/bin
'';
meta = with lib; {
description = "Fake the system date";
longDescription = ''
datefudge is a small utility that pretends that the system time is
different by pre-loading a small library which modifies the time,
gettimeofday and clock_gettime system calls.
'';
homepage = "https://packages.qa.debian.org/d/datefudge.html";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ leenaars ];
mainProgram = "datefudge";
};
}