docbook_xml_dtd: add version 4.4

We already have 4.3 and 4.5, but for the latest "moreutils" package
update we need version 4.4.
This commit is contained in:
Bjørn Forsman
2015-07-29 15:38:19 +02:00
parent 11643f47c3
commit f64a24da5c
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{stdenv, fetchurl, unzip}:
import ./generic.nix {
inherit stdenv fetchurl unzip;
name = "docbook-xml-4.4";
src = fetchurl {
url = http://www.docbook.org/xml/4.4/docbook-xml-4.4.zip;
sha256 = "141h4zsyc71sfi2zzd89v4bb4qqq9ca1ri9ix2als9f4i3mmkw82";
};
meta = {
branch = "4.4";
};
}