mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-14 06:27:01 +00:00
This should stop explicitly-versioned expressions from showing up in the monitor as in need of update.
13 lines
282 B
Nix
13 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";
|
|
};
|
|
}
|