nixpkgs/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/generic.nix
Eelco Dolstra f6073d7f34 * Added the old DocBook XML 4.1.2 (Gnome needs it).
svn path=/nixpkgs/trunk/; revision=9469
2007-10-18 15:12:49 +00:00

10 lines
191 B
Nix

{stdenv, fetchurl, unzip, src, name, postInstall ? "true"}:
assert unzip != null;
stdenv.mkDerivation {
inherit src name postInstall;
builder = ./builder.sh;
buildInputs = [unzip];
}