2021-01-17 16:17:16 +07:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libxml2 }:
|
2014-11-15 17:49:00 +01:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2014-11-15 17:49:00 +01:00
|
|
|
name = "xml2-0.5";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-31 21:11:51 -04:00
|
|
|
url = "https://web.archive.org/web/20160427221603/http://download.ofb.net/gale/xml2-0.5.tar.gz";
|
2014-11-15 17:49:00 +01:00
|
|
|
sha256 = "01cps980m99y99cnmvydihga9zh3pvdsqag2fi1n6k2x7rfkl873";
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-17 16:17:16 +07:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 17:26:13 -04:00
|
|
|
buildInputs = [ libxml2 ];
|
2014-11-15 17:49:00 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://web.archive.org/web/20160515005047/http://dan.egnor.name:80/xml2";
|
2014-11-15 17:49:00 +01:00
|
|
|
description = "Tools for command line processing of XML, HTML, and CSV";
|
|
|
|
|
license = licenses.gpl2Plus;
|
2016-05-22 14:34:05 +02:00
|
|
|
platforms = platforms.all;
|
2014-11-15 17:49:00 +01:00
|
|
|
maintainers = [ maintainers.rycee ];
|
|
|
|
|
};
|
|
|
|
|
}
|