summary refs log tree commit diff
path: root/pkgs/applications/virtualization/lkl/default.nix
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2019-07-04 23:13:08 -0400
committerMatthieu Coudron <coudron@iij.ad.jp>2019-07-05 08:06:09 +0200
commit721b391f930bcb10ae127a9f4449d64ea10cd3e3 (patch)
treef658fb34c65e891076c87c0728471ac3a228b847 /pkgs/applications/virtualization/lkl/default.nix
parent698f3e9040eb079455c02c0b8668f62533028b72 (diff)
downloadnixpkgs-721b391f930bcb10ae127a9f4449d64ea10cd3e3.tar
nixpkgs-721b391f930bcb10ae127a9f4449d64ea10cd3e3.tar.gz
nixpkgs-721b391f930bcb10ae127a9f4449d64ea10cd3e3.tar.bz2
nixpkgs-721b391f930bcb10ae127a9f4449d64ea10cd3e3.tar.lz
nixpkgs-721b391f930bcb10ae127a9f4449d64ea10cd3e3.tar.xz
nixpkgs-721b391f930bcb10ae127a9f4449d64ea10cd3e3.tar.zst
nixpkgs-721b391f930bcb10ae127a9f4449d64ea10cd3e3.zip
lkl: 2018-08-22 -> 2019-06-20
Fixes the build on 32-bit ARM, which enables the generation of SD card images
on these platforms.
Diffstat (limited to 'pkgs/applications/virtualization/lkl/default.nix')
-rw-r--r--pkgs/applications/virtualization/lkl/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/virtualization/lkl/default.nix b/pkgs/applications/virtualization/lkl/default.nix
index 40503ab89d7..318929eb225 100644
--- a/pkgs/applications/virtualization/lkl/default.nix
+++ b/pkgs/applications/virtualization/lkl/default.nix
@@ -2,8 +2,9 @@
 , buildPackages }:
 
 stdenv.mkDerivation rec {
-  name = "lkl-2018-08-22";
-  rev  = "5221c547af3d29582703f01049617a6bf9f6232a";
+  pname = "lkl";
+  version = "2019-06-20";
+  rev  = "0a4ebeadad12b94db665b8daf30e44e949a02d90";
 
   outputs = [ "dev" "lib" "out" ];
 
@@ -15,7 +16,7 @@ stdenv.mkDerivation rec {
     inherit rev;
     owner  = "lkl";
     repo   = "linux";
-    sha256 = "1k2plyx40xaphm8zsk2dd1lyv6dhsp7kj6hfmdgiamvl80bjajqy";
+    sha256 = "09y9ci3j0lp3z74h577ng2s9a4n4glqpqndyc9iy6wdqaj764gm6";
   };
 
   # Fix a /usr/bin/env reference in here that breaks sandboxed builds
@@ -58,7 +59,7 @@ stdenv.mkDerivation rec {
       overhead
     '';
     homepage    = https://github.com/lkl/linux/;
-    platforms   = [ "x86_64-linux" "aarch64-linux" ]; # Darwin probably works too but I haven't tested it
+    platforms   = [ "x86_64-linux" "aarch64-linux" "armv7l-linux" "armv6l-linux" ]; # Darwin probably works too but I haven't tested it
     license     = licenses.gpl2;
     maintainers = with maintainers; [ copumpkin ];
   };