3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/generic.nix
Mateusz Kowalczyk 0c43a02e36 Attach a bunch of meta.branch info for the monitor
This should stop explicitly-versioned expressions from showing up in the
monitor as in need of update.
2014-11-17 18:04:59 +00:00

10 lines
209 B
Nix

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