3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix
Mateusz Kowalczyk 0c43a02e36 Attach a bunch of meta.branch info for the monitor
This should stop explicitly-versioned expressions from showing up in the
monitor as in need of update.
2014-11-17 18:04:59 +00:00

14 lines
282 B
Nix

{stdenv, fetchurl, unzip}:
import ./generic.nix {
inherit stdenv fetchurl unzip;
name = "docbook-xml-4.2";
src = fetchurl {
url = http://www.docbook.org/xml/4.2/docbook-xml-4.2.zip;
md5 = "73fe50dfe74ca631c1602f558ed8961f";
};
meta = {
branch = "4.2";
};
}