3
0
Fork 0
forked from mirrors/nixpkgs

libfaketime: 0.9.6 -> 0.9.7

* Project is hosted on github.com.
* The -Wno-nonnull-compare fix is included in 0.9.7, so remove it from
  this package expression.
This commit is contained in:
Bjørn Forsman 2017-11-15 07:45:50 +01:00
parent 3dded417f6
commit b06c5a678d

View file

@ -1,11 +1,12 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libfaketime-0.9.6";
name = "libfaketime-${version}";
version = "0.9.7";
src = fetchurl {
url = "http://www.code-wizards.com/projects/libfaketime/${name}.tar.gz";
sha256 = "1dw2lqsv2iqwxg51mdn25b4fjj3v357s0mc6ahxawqp210krg29s";
url = "https://github.com/wolfcw/libfaketime/archive/v${version}.tar.gz";
sha256 = "07l189881q0hybzmlpjyp7r5fwz23iafkm957bwy4gnmn9lg6rad";
};
patches = [
@ -16,12 +17,9 @@ stdenv.mkDerivation rec {
makeFlagsArray+=(PREFIX="$out" LIBDIRNAME=/lib)
'';
# Work around "libfaketime.c:513:7: error: nonnull argument 'buf' compared to NULL [-Werror=nonnull-compare]".
NIX_CFLAGS_COMPILE = "-Wno-nonnull-compare";
meta = with stdenv.lib; {
description = "Report faked system time to programs without having to change the system-wide time";
homepage = http://www.code-wizards.com/projects/libfaketime/;
homepage = "https://github.com/wolfcw/libfaketime/";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ maintainers.bjornfor ];