mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, perl, coreutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libfaketime";
|
|
version = "0.9.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wolfcw";
|
|
repo = "libfaketime";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-P1guVggteGtoq8+eeE966hDPkRwsn0m7oLCohyPrIb4=";
|
|
};
|
|
|
|
patches = [
|
|
./no-date-in-gzip-man-page.patch
|
|
./nix-store-date.patch
|
|
] ++ (lib.optionals stdenv.cc.isClang [
|
|
# https://github.com/wolfcw/libfaketime/issues/277
|
|
./0001-Remove-unsupported-clang-flags.patch
|
|
]);
|
|
|
|
postPatch = ''
|
|
patchShebangs test src
|
|
for a in test/functests/test_exclude_mono.sh src/faketime.c ; do
|
|
substituteInPlace $a \
|
|
--replace /bin/bash ${stdenv.shell}
|
|
done
|
|
substituteInPlace src/faketime.c --replace @DATE_CMD@ ${coreutils}/bin/date
|
|
'';
|
|
|
|
PREFIX = placeholder "out";
|
|
LIBDIRNAME = "/lib";
|
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=cast-function-type -Wno-error=format-truncation";
|
|
|
|
nativeCheckInputs = [ perl ];
|
|
|
|
meta = with lib; {
|
|
description = "Report faked system time to programs without having to change the system-wide time";
|
|
homepage = "https://github.com/wolfcw/libfaketime/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
mainProgram = "faketime";
|
|
};
|
|
}
|