nixpkgs/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.3.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

13 lines
282 B
Nix

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