![Mateusz Kowalczyk](/assets/img/avatar_default.png)
This should stop explicitly-versioned expressions from showing up in the monitor as in need of update.
13 lines
305 B
Nix
13 lines
305 B
Nix
{stdenv, fetchurl, unzip}:
|
|
|
|
import ./generic.nix {
|
|
inherit stdenv fetchurl unzip;
|
|
name = "docbook-xml-4.5";
|
|
src = fetchurl {
|
|
url = http://www.docbook.org/xml/4.5/docbook-xml-4.5.zip;
|
|
sha256 = "1d671lcjckjri28xfbf6dq7y3xnkppa910w1jin8rjc35dx06kjf";
|
|
};
|
|
meta = {
|
|
branch = "4.5";
|
|
};
|
|
}
|