3
0
Fork 0
forked from mirrors/nixpkgs

ceph: fix for zip timestamps

This commit is contained in:
Robin Gloster 2016-03-03 16:55:17 +00:00
parent d07d94b97c
commit e2372a4183

View file

@ -1,4 +1,5 @@
{ stdenv, autoconf, automake, makeWrapper, pkgconfig, libtool, which, git
{ stdenv, ensureNewerSourcesHook, autoconf, automake, makeWrapper, pkgconfig
, libtool, which, git
, boost, python, pythonPackages, libxml2, zlib
# Optional Dependencies
@ -111,7 +112,10 @@ stdenv.mkDerivation {
./0001-Makefile-env-Don-t-force-sbin.patch
];
nativeBuildInputs = [ autoconf automake makeWrapper pkgconfig libtool which git ]
nativeBuildInputs = [
autoconf automake makeWrapper pkgconfig libtool which git
(ensureNewerSourcesHook { year = "1980"; })
]
++ optionals (versionAtLeast version "9.0.2") [
pythonPackages.setuptools pythonPackages.argparse
];