From e531f98846c62939f7bf8c81284dbd3867bf7939 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Tue, 13 Aug 2024 22:18:55 +0200 Subject: [PATCH] selinux-python: remove 'with lib;' --- pkgs/os-specific/linux/selinux-python/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/selinux-python/default.nix b/pkgs/os-specific/linux/selinux-python/default.nix index 121511401151..c2d91104bf4f 100644 --- a/pkgs/os-specific/linux/selinux-python/default.nix +++ b/pkgs/os-specific/linux/selinux-python/default.nix @@ -2,9 +2,6 @@ , libselinux, libsemanage, libsepol, setools }: # this is python3 only because setools only supports python3 - -with lib; - stdenv.mkDerivation rec { pname = "selinux-python"; version = "3.3"; @@ -42,7 +39,7 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = { + meta = with lib; { description = "SELinux policy core utilities written in Python"; license = licenses.gpl2Plus; homepage = "https://selinuxproject.org";