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

libxml2: use python2

This commit is contained in:
Frederik Rietdijk 2016-10-17 09:39:10 +02:00
parent 95b5d8f752
commit 47a95edc1e

View file

@ -1,7 +1,9 @@
{ stdenv, lib, fetchurl, zlib, xz, python, findXMLCatalogs, libiconv, fetchpatch
{ stdenv, lib, fetchurl, zlib, xz, python2, findXMLCatalogs, libiconv, fetchpatch
, supportPython ? (! stdenv ? cross) }:
stdenv.mkDerivation rec {
let
python = python2;
in stdenv.mkDerivation rec {
name = "libxml2-${version}";
version = "2.9.4";