nixpkgs/pkgs/tools/system/datefudge/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchgit, fetchpatch, makeWrapper, coreutils }:
2016-06-29 23:13:45 +02:00
stdenv.mkDerivation rec {
2016-06-29 23:13:45 +02:00
pname = "datefudge";
2020-07-27 00:15:38 +02:00
version = "1.24";
2016-06-29 23:13:45 +02:00
src = fetchgit {
url = "https://salsa.debian.org/debian/${pname}.git";
rev = "debian/${version}";
2020-07-27 00:15:38 +02:00
sha256 = "1nh433yx4y4djp0bs6aawqbwk7miq7fsbs9wpjlyh2k9dvil2lrm";
2016-06-29 23:13:45 +02:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ coreutils ];
postPatch = ''
2016-06-29 23:13:45 +02:00
substituteInPlace Makefile \
--replace "/usr" "/" \
--replace "-o root -g root" ""
substituteInPlace datefudge.sh \
--replace "@LIBDIR@" "$out/lib/"
'';
2016-06-29 23:13:45 +02:00
installFlags = [ "DESTDIR=$(out)" ];
postInstall = ''
chmod +x $out/lib/datefudge/datefudge.so
wrapProgram $out/bin/datefudge --prefix PATH : ${coreutils}/bin
'';
2016-06-29 23:13:45 +02:00
meta = with lib; {
2016-06-29 23:13:45 +02:00
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";
2016-06-29 23:13:45 +02:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ leenaars ];
};
}