ceph: possible fix for zip timestamps

This commit is contained in:
Robin Gloster 2016-03-03 16:55:17 +00:00
parent fed49425c5
commit 84cc00b403

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
];