993e730081
* Removed schemas/xml-dtd/docbook-5.0, it's subsumed by schemas/docbook5 which contains both the RelaxNG and DTD schemata, as well some other stuff. svn path=/nixpkgs/trunk/; revision=6178
12 lines
242 B
Nix
12 lines
242 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "docbook5-5.0-pre-beta7";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://www.docbook.org/xml/5.0b7/docbook-5.0b7.tar.gz;
|
|
md5 = "f1e18aaf56b0f0b2b2ab9eaff4bb6a1e";
|
|
};
|
|
}
|