libfaketime: use checkInputs, fix tests

This commit is contained in:
Jan Malakhovski 2018-08-08 18:47:05 +00:00
parent 37ec85fc54
commit 311304155f

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl }: { stdenv, fetchurl, bash, perl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libfaketime-${version}"; name = "libfaketime-${version}";
@ -13,10 +13,20 @@ stdenv.mkDerivation rec {
./no-date-in-gzip-man-page.patch ./no-date-in-gzip-man-page.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
'';
preBuild = '' preBuild = ''
makeFlagsArray+=(PREFIX="$out" LIBDIRNAME=/lib) makeFlagsArray+=(PREFIX="$out" LIBDIRNAME=/lib)
''; '';
checkInputs = [ perl ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Report faked system time to programs without having to change the system-wide time"; description = "Report faked system time to programs without having to change the system-wide time";
homepage = "https://github.com/wolfcw/libfaketime/"; homepage = "https://github.com/wolfcw/libfaketime/";