mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 07:04:28 +00:00
f64a24da5c
We already have 4.3 and 4.5, but for the latest "moreutils" package update we need version 4.4.
14 lines
305 B
Nix
14 lines
305 B
Nix
{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";
|
|
};
|
|
}
|