summary refs log tree commit diff
path: root/pkgs/os-specific/linux/beegfs
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski.uu@gmail.com>2018-03-12 13:30:51 -0700
committerMarkus Kowalewski <markus.kowalewski.uu@gmail.com>2018-03-12 13:30:51 -0700
commit11d40d53314a3f3d100ace991484543a5769887e (patch)
tree6a6f86f47cff83f08bd6d9af9692d6cf75d35a66 /pkgs/os-specific/linux/beegfs
parenta431a65a2c12cbd71b991de21753cfeae9049274 (diff)
downloadnixlib-11d40d53314a3f3d100ace991484543a5769887e.tar
nixlib-11d40d53314a3f3d100ace991484543a5769887e.tar.gz
nixlib-11d40d53314a3f3d100ace991484543a5769887e.tar.bz2
nixlib-11d40d53314a3f3d100ace991484543a5769887e.tar.lz
nixlib-11d40d53314a3f3d100ace991484543a5769887e.tar.xz
nixlib-11d40d53314a3f3d100ace991484543a5769887e.tar.zst
nixlib-11d40d53314a3f3d100ace991484543a5769887e.zip
beegfs: 6.17 -> 6.18
Diffstat (limited to 'pkgs/os-specific/linux/beegfs')
-rw-r--r--pkgs/os-specific/linux/beegfs/default.nix4
-rw-r--r--pkgs/os-specific/linux/beegfs/kernel-module.nix5
2 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/beegfs/default.nix b/pkgs/os-specific/linux/beegfs/default.nix
index 6cf233694cdc..f17bc9492c1b 100644
--- a/pkgs/os-specific/linux/beegfs/default.nix
+++ b/pkgs/os-specific/linux/beegfs/default.nix
@@ -5,7 +5,7 @@
 } :
 
 let
-  version = "6.17";
+  version = "6.18";
 
   subdirs = [
     "beeond_thirdparty/build"
@@ -30,7 +30,7 @@ in stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "https://git.beegfs.com/pub/v6/repository/archive.tar.bz2?ref=${version}";
-    sha256 = "10xs7gzdmlg23k6zn1b7jij3lljn7rr1j6h476hq4lbg981qk3n3";
+    sha256 = "1g874qyxh4v53ah3lzchrqi0jci7wngr54q3f4d9q0kzvvifripn";
   };
 
   nativeBuildInputs = [ which unzip pkgconfig cppunit openjdk ant perl ];
diff --git a/pkgs/os-specific/linux/beegfs/kernel-module.nix b/pkgs/os-specific/linux/beegfs/kernel-module.nix
index 4525d156159b..63e45928f217 100644
--- a/pkgs/os-specific/linux/beegfs/kernel-module.nix
+++ b/pkgs/os-specific/linux/beegfs/kernel-module.nix
@@ -3,13 +3,13 @@
 } :
 
 let
-  version = "6.17";
+  version = "6.18";
 in stdenv.mkDerivation {
   name = "beegfs-module-${version}-${kernel.version}";
 
   src = fetchurl {
     url = "https://git.beegfs.com/pub/v6/repository/archive.tar.bz2?ref=${version}";
-    sha256 = "10xs7gzdmlg23k6zn1b7jij3lljn7rr1j6h476hq4lbg981qk3n3";
+    sha256 = "1g874qyxh4v53ah3lzchrqi0jci7wngr54q3f4d9q0kzvvifripn";
   };
 
   hardeningDisable = [ "fortify" "pic" "stackprotector" ];
@@ -41,6 +41,5 @@ in stdenv.mkDerivation {
     platforms = [ "i686-linux" "x86_64-linux" ];
     license = licenses.gpl2;
     maintainers = with maintainers; [ markuskowa ];
-    broken = versionAtLeast kernel.version "4.14";
   };
 }