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

assert unzip != null;

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

  meta = meta // {
    platforms = stdenv.lib.platforms.unix;
  };
}