nixpkgs/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/generic.nix

10 lines
191 B
Nix
Raw Normal View History

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