mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
46 lines
1.2 KiB
Nix
46 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";
|
|
};
|
|
}
|