forked from mirrors/nixpkgs
0c43a02e36
This should stop explicitly-versioned expressions from showing up in the monitor as in need of update.
14 lines
282 B
Nix
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";
|
|
};
|
|
}
|