summary refs log tree commit diff
path: root/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/generic.nix
blob: 29a18f4ce69e76fe4eff99d0949c2f0c66c18df3 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ stdenv, fetchurl, unzip, src, name, postInstall ? "true", meta ? {} }:

assert unzip != null;

stdenv.mkDerivation {
  inherit src name postInstall meta;
  builder = ./builder.sh;
  buildInputs = [unzip];
}