checkpolicy: fix bad meta.outputsToInstall

This was silently blocking the channels.  Thanks amine* from IRC.
Maybe inheriting whole meta should be avoided and particular attributes
should be picked instead, as e.g. adding longDescription would have
unexpected consequences as well.
This commit is contained in:
Vladimír Čunát 2018-07-29 20:22:17 +02:00
parent 09766b55f0
commit 57b9719e4c
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
"LIBSEPOLA=${stdenv.lib.getLib libsepol}/lib/libsepol.a"
];
meta = libsepol.meta // {
meta = removeAttrs libsepol.meta ["outputsToInstall"] // {
description = "SELinux policy compiler";
};
}