Skip to content

Commit

Permalink
libsemanage, libselinux: fix meta.outputsToInstall
Browse files Browse the repository at this point in the history
Same as 57b9719.
+libselinux from vcunat - was probably not breaking but confusing anyway.
Close #44212.
  • Loading branch information
AmineChikhaoui authored and vcunat committed Jul 29, 2018
1 parent 326f514 commit 78a988b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/libselinux/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ stdenv.mkDerivation rec {

installTargets = [ "install" ] ++ optional enablePython "install-pywrap";

meta = libsepol.meta // {
meta = removeAttrs libsepol.meta ["outputsToInstall"] // {
description = "SELinux core library";
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/libsemanage/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ stdenv.mkDerivation rec {

installTargets = [ "install" ] ++ optionals enablePython [ "install-pywrap" ];

meta = libsepol.meta // {
meta = removeAttrs libsepol.meta ["outputsToInstall"] // {
description = "Policy management tools for SELinux";
license = stdenv.lib.licenses.lgpl21;
};
Expand Down

0 comments on commit 78a988b

Please sign in to comment.