datefudge 1.24 -> 1.26 https://repology.org/project/datefudge/versions attrpath: datefudge Checking auto update branch... No auto update branch exists Old version 1.24" not present in master derivation file with contents: { lib, stdenv, fetchgit, makeWrapper, coreutils }: stdenv.mkDerivation rec { pname = "datefudge"; version = "1.25"; src = fetchgit { url = "https://salsa.debian.org/debian/${pname}.git"; rev = "debian/${version}"; sha256 = "sha256-FDrwd5kahIfKGfUBIm7BBuqHwrQ/+UE1gRQrJNd031o="; }; 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.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ leenaars ]; mainProgram = "datefudge"; }; }