From 57b9719e4cf601c617f02f59365e7218eefb9b0f Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Sun, 29 Jul 2018 20:22:17 +0200 Subject: 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. --- pkgs/os-specific/linux/checkpolicy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/os-specific') diff --git a/pkgs/os-specific/linux/checkpolicy/default.nix b/pkgs/os-specific/linux/checkpolicy/default.nix index ac4bc83c51de..674b695b1eee 100644 --- a/pkgs/os-specific/linux/checkpolicy/default.nix +++ b/pkgs/os-specific/linux/checkpolicy/default.nix @@ -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"; }; } -- cgit 1.4.1