mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
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:
parent
09766b55f0
commit
57b9719e4c
@ -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";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user