summary refs log tree commit diff
path: root/pkgs/os-specific/linux/policycoreutils
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-11-12 09:20:45 +0000
committerAlyssa Ross <hi@alyssa.is>2021-11-21 13:51:54 +0000
commit28625f78619e77e48dde0c453f9ed5944f30b3d7 (patch)
tree76eef62d598d8af195e30e5cc34aa22721aaeb7b /pkgs/os-specific/linux/policycoreutils
parent20fd3b100215364e6d88cf5a6becc91827ad0a73 (diff)
downloadnixpkgs-28625f78619e77e48dde0c453f9ed5944f30b3d7.tar
nixpkgs-28625f78619e77e48dde0c453f9ed5944f30b3d7.tar.gz
nixpkgs-28625f78619e77e48dde0c453f9ed5944f30b3d7.tar.bz2
nixpkgs-28625f78619e77e48dde0c453f9ed5944f30b3d7.tar.lz
nixpkgs-28625f78619e77e48dde0c453f9ed5944f30b3d7.tar.xz
nixpkgs-28625f78619e77e48dde0c453f9ed5944f30b3d7.tar.zst
nixpkgs-28625f78619e77e48dde0c453f9ed5944f30b3d7.zip
selinux: 2.9, 3.0 -> 3.3
These are all released together, so I'm updating them all in a single
commit.
Diffstat (limited to 'pkgs/os-specific/linux/policycoreutils')
-rw-r--r--pkgs/os-specific/linux/policycoreutils/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/policycoreutils/default.nix b/pkgs/os-specific/linux/policycoreutils/default.nix
index 7e2ff29325a..c066dd4c4c5 100644
--- a/pkgs/os-specific/linux/policycoreutils/default.nix
+++ b/pkgs/os-specific/linux/policycoreutils/default.nix
@@ -2,12 +2,12 @@
 
 stdenv.mkDerivation rec {
   pname = "policycoreutils";
-  version = "2.9";
-  inherit (libsepol) se_release se_url;
+  version = "3.3";
+  inherit (libsepol) se_url;
 
   src = fetchurl {
-    url = "${se_url}/${se_release}/policycoreutils-${version}.tar.gz";
-    sha256 = "0yqg5ws5gbl1cbn8msxdk1c3ilmmx58qg5dx883kqyq0517k8g65";
+    url = "${se_url}/${version}/policycoreutils-${version}.tar.gz";
+    sha256 = "0y0hl32b2ks7r0fhbx3k2j1gqqms5aplyasjs3fz50caxl6096a1";
   };
 
   postPatch = ''
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
 
   makeFlags = [
     "PREFIX=$(out)"
-    "SBINDIR=$(out)/sbin"
+    "SBINDIR=$(out)/bin"
     "ETCDIR=$(out)/etc"
     "BASHCOMPLETIONDIR=$out/share/bash-completion/completions"
     "LOCALEDIR=$(out)/share/locale"