1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

zziplib: use python2

This commit is contained in:
Frederik Rietdijk 2016-10-18 09:04:03 +02:00
parent 2a1c4e9322
commit 9c3fd2c437

View file

@ -1,4 +1,4 @@
{ fetchurl, stdenv, perl, python, zip, xmlto, zlib }:
{ fetchurl, stdenv, perl, python2, zip, xmlto, zlib }:
stdenv.mkDerivation rec {
name = "zziplib-0.13.58";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sed -i -e s,--export-dynamic,, configure
'';
buildInputs = [ perl python zip xmlto zlib ];
buildInputs = [ perl python2 zip xmlto zlib ];
doCheck = true;
@ -33,6 +33,6 @@ stdenv.mkDerivation rec {
homepage = http://zziplib.sourceforge.net/;
maintainers = [ ];
platforms = python.meta.platforms;
platforms = python2.meta.platforms;
};
}