forked from mirrors/nixpkgs
Add package 'xml2'.
This commit is contained in:
parent
71d1542c2d
commit
c6d4881a42
19
pkgs/tools/text/xml/xml2/default.nix
Normal file
19
pkgs/tools/text/xml/xml2/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{ stdenv, fetchurl, pkgconfig, libxml2 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "xml2-0.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://download.ofb.net/gale/${name}.tar.gz";
|
||||||
|
sha256 = "01cps980m99y99cnmvydihga9zh3pvdsqag2fi1n6k2x7rfkl873";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig libxml2 ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://ofb.net/~egnor/xml2/;
|
||||||
|
description = "Tools for command line processing of XML, HTML, and CSV";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = [ maintainers.rycee ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2791,6 +2791,8 @@ let
|
||||||
|
|
||||||
xfsprogs = callPackage ../tools/filesystems/xfsprogs { };
|
xfsprogs = callPackage ../tools/filesystems/xfsprogs { };
|
||||||
|
|
||||||
|
xml2 = callPackage ../tools/text/xml/xml2 { };
|
||||||
|
|
||||||
xmlroff = callPackage ../tools/typesetting/xmlroff {
|
xmlroff = callPackage ../tools/typesetting/xmlroff {
|
||||||
inherit (gnome) libgnomeprint;
|
inherit (gnome) libgnomeprint;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue