diff options
Diffstat (limited to 'nix/kernel.nix')
| -rw-r--r-- | nix/kernel.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/nix/kernel.nix b/nix/kernel.nix index 8656e4e..347e46d 100644 --- a/nix/kernel.nix +++ b/nix/kernel.nix @@ -1,11 +1,10 @@ -{ stdenv, fetchgit }: +{ stdenv, fetchurl, flex, bison }: stdenv.mkDerivation { name = "linux-yerba"; - src = fetchgit { - url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git"; - rev = "v7.0.7"; - hash = ""; + src = fetchurl { + url = "https://cdn.kernel.org/pub/linux/kernel/v7.x/linux-7.0.11.tar.xz"; + hash = "sha256-5WyDVt2gETamBBxu+DK9Dsmb0tNd/5eDKqXsEO0BQwQ="; }; preConfigure = '' cp ${./linux_config} .config |
