3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/datefudge/default.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, fetchpatch }:
2016-06-29 22:13:45 +01:00
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 {
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
};
patches = [
(fetchpatch {
url = "https://src.fedoraproject.org/rpms/datefudge/raw/master/f/datefudge_1.23-tz.patch";
sha256 = "19c2fvhm06wnp3059b0rnd7dqdchkan8iycjh8jk8y25j870zkvn";
})
];
postPatch = ''
2016-06-29 22:13:45 +01:00
substituteInPlace Makefile \
--replace "/usr" "/" \
--replace "-o root -g root" ""
substituteInPlace datefudge.sh \
--replace "@LIBDIR@" "$out/lib/"
'';
2016-06-29 22:13:45 +01:00
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.
'';
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 ];
};
}