libxmlxx3: split out dev output
This commit is contained in:
parent
e40d568daa
commit
8e7cea5cb8
1 changed files with 4 additions and 5 deletions
|
@ -1,16 +1,15 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
|
{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libxml++-${maj_ver}.${min_ver}";
|
pname = "libxml++";
|
||||||
maj_ver = "3.0";
|
version = "3.0.1";
|
||||||
min_ver = "1";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/libxml++/${maj_ver}/${name}.tar.xz";
|
url = "mirror://gnome/sources/libxml++/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "19kik79fmg61nv0by0a5f9wchrcfjwzvih4v2waw01hqflhqvp0r";
|
sha256 = "19kik79fmg61nv0by0a5f9wchrcfjwzvih4v2waw01hqflhqvp0r";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "devdoc" ];
|
outputs = [ "out" "dev" "devdoc" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig perl ];
|
nativeBuildInputs = [ pkgconfig perl ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue