summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libsepol
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2020-11-20 14:54:14 +0100
committerGitHub <noreply@github.com>2020-11-20 14:54:14 +0100
commit70ecb218f1d12ee4825d1c511573be51038af70b (patch)
treeb01b25b594dcbe12d34599a7abd38d189e631fe1 /pkgs/os-specific/linux/libsepol
parentcbb4e4733bf2641e75ddf84578d273be99a33824 (diff)
downloadnixpkgs-70ecb218f1d12ee4825d1c511573be51038af70b.tar
nixpkgs-70ecb218f1d12ee4825d1c511573be51038af70b.tar.gz
nixpkgs-70ecb218f1d12ee4825d1c511573be51038af70b.tar.bz2
nixpkgs-70ecb218f1d12ee4825d1c511573be51038af70b.tar.lz
nixpkgs-70ecb218f1d12ee4825d1c511573be51038af70b.tar.xz
nixpkgs-70ecb218f1d12ee4825d1c511573be51038af70b.tar.zst
nixpkgs-70ecb218f1d12ee4825d1c511573be51038af70b.zip
selinux: 2.9 -> 3.0 (#104087)
Notably, Python 2 code is not be supported in this project anymore and
new Python code should be written only for Python 3, which is no longer
restricted to Python 3.7 (see 780fb563c74171aafc2fb802cfdebd56a68d0705,
5dfd3c497540bb172ff0d04cc8eb5ecbeb59b938)

https://github.com/SELinuxProject/selinux/releases/tag/20191204
Diffstat (limited to 'pkgs/os-specific/linux/libsepol')
-rw-r--r--pkgs/os-specific/linux/libsepol/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/libsepol/default.nix b/pkgs/os-specific/linux/libsepol/default.nix
index 497961af11b..3592ba1637c 100644
--- a/pkgs/os-specific/linux/libsepol/default.nix
+++ b/pkgs/os-specific/linux/libsepol/default.nix
@@ -2,15 +2,15 @@
 
 stdenv.mkDerivation rec {
   pname = "libsepol";
-  version = "2.9";
-  se_release = "20190315";
+  version = "3.0";
+  se_release = "20191204";
   se_url = "https://github.com/SELinuxProject/selinux/releases/download";
 
   outputs = [ "bin" "out" "dev" "man" ];
 
   src = fetchurl {
     url = "${se_url}/${se_release}/libsepol-${version}.tar.gz";
-    sha256 = "0p8x7w73jn1nysx1d7416wqrhbi0r6isrjxib7jf68fi72q14jx3";
+    sha256 = "0ygb6dh5lng91xs6xiqf5v0nxa68qmjc787p0s5h9w89364f2yjv";
   };
 
   nativeBuildInputs = [ flex ];