forked from mirrors/nixpkgs
ceph: fix for zip timestamps
This commit is contained in:
parent
d07d94b97c
commit
e2372a4183
|
@ -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
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue