3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/xml/xml2/default.nix

21 lines
543 B
Nix
Raw Normal View History

2014-11-15 16:49:00 +00:00
{ 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;
2016-05-22 13:34:05 +01:00
platforms = platforms.all;
2014-11-15 16:49:00 +00:00
maintainers = [ maintainers.rycee ];
};
}