1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 11:02:05 +00:00

docbook_xml_dtd_*: Add meta.platforms

This commit is contained in:
Tuomas Tynkkynen 2016-08-28 17:56:16 +03:00
parent f976fa40a2
commit ad371aaef9

View file

@ -3,7 +3,11 @@
assert unzip != null;
stdenv.mkDerivation {
inherit src name postInstall meta;
inherit src name postInstall;
builder = ./builder.sh;
buildInputs = [unzip];
meta = meta // {
platforms = stdenv.lib.platforms.unix;
};
}