jool: 3.5.4 -> 3.5.7

This commit is contained in:
Franz Pletz 2018-07-15 20:11:05 +02:00
parent c0fd62dab4
commit 6c33223f5f
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, kernel }: { stdenv, fetchFromGitHub, kernel }:
assert stdenv.lib.versionOlder kernel.version "4.13"; assert stdenv.lib.versionOlder kernel.version "4.17";
let let
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; }; sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
@ -11,6 +11,7 @@ stdenv.mkDerivation {
src = sourceAttrs.src; src = sourceAttrs.src;
nativeBuildInputs = kernel.moduleBuildDependencies;
hardeningDisable = [ "pic" ]; hardeningDisable = [ "pic" ];
prePatch = '' prePatch = ''

View File

@ -1,11 +1,11 @@
{ fetchFromGitHub }: { fetchFromGitHub }:
rec { rec {
version = "3.5.4"; version = "3.5.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "NICMx"; owner = "NICMx";
repo = "Jool"; repo = "Jool";
rev = "v${version}"; rev = "v${version}";
sha256 = "09b9zcxgmy59jb778lkdyslx777bpsl216kkivw0zwfwsgd4pyz5"; sha256 = "1qxhrchhm4lbyxkp6wm47a85aa4d9wlyy3kdijl8rarngvh8j1yx";
}; };
} }