2016-06-29 22:13:45 +01:00
|
|
|
{ stdenv, fetchgit }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2016-06-29 22:13:45 +01:00
|
|
|
pname = "datefudge";
|
2019-09-10 09:00:11 +01:00
|
|
|
version = "1.23";
|
2016-06-29 22:13:45 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
2018-11-17 10:16:32 +00:00
|
|
|
url = "https://salsa.debian.org/debian/datefudge.git";
|
2019-09-10 09:00:11 +01:00
|
|
|
rev = "090d3aace17640478f7f5119518b2f4196f62617";
|
|
|
|
sha256 = "0r9g8v9xnv60hq3j20wqy34kyig3sc2pisjxl4irn7jjx85f1spv";
|
2016-06-29 22:13:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "/usr" "/" \
|
|
|
|
--replace "-o root -g root" ""
|
|
|
|
substituteInPlace datefudge.sh \
|
|
|
|
--replace "@LIBDIR@" "$out/lib/"
|
|
|
|
'';
|
|
|
|
|
|
|
|
preInstallPhase = "mkdir -P $out/lib/datefudge";
|
|
|
|
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
|
|
|
|
postInstall = "chmod +x $out/lib/datefudge/datefudge.so";
|
|
|
|
|
|
|
|
meta = with stdenv.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.
|
|
|
|
'';
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://packages.qa.debian.org/d/datefudge.html;
|
2016-06-29 22:13:45 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
};
|
|
|
|
}
|