mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
libxml2 version passthru
This commit is contained in:
parent
95b204cd33
commit
19dd74c59a
1 changed files with 6 additions and 2 deletions
|
@ -4,8 +4,12 @@ assert pythonSupport -> python != null;
|
|||
|
||||
#TODO: share most stuff between python and non-python builds, perhaps via multiple-output
|
||||
|
||||
let
|
||||
version = "2.9.1";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
name = "libxml2-2.9.1";
|
||||
name = "libxml2-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
|
||||
|
@ -22,7 +26,7 @@ stdenv.mkDerivation (rec {
|
|||
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
passthru = { inherit pythonSupport; };
|
||||
passthru = { inherit pythonSupport version; };
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue