summary refs log tree commit diff
path: root/pkgs/applications/virtualization/rkt/default.nix
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2016-01-04 14:39:34 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2016-01-04 14:39:34 +0300
commit387b38e10b846fd5a35adc00aec7e79e697e56cf (patch)
tree54369078b9d6391f0b9f63f2c10b49fcb7cb69f7 /pkgs/applications/virtualization/rkt/default.nix
parent014ee32abd6224e3ccd46c0a1170187b8357a887 (diff)
downloadnixlib-387b38e10b846fd5a35adc00aec7e79e697e56cf.tar
nixlib-387b38e10b846fd5a35adc00aec7e79e697e56cf.tar.gz
nixlib-387b38e10b846fd5a35adc00aec7e79e697e56cf.tar.bz2
nixlib-387b38e10b846fd5a35adc00aec7e79e697e56cf.tar.lz
nixlib-387b38e10b846fd5a35adc00aec7e79e697e56cf.tar.xz
nixlib-387b38e10b846fd5a35adc00aec7e79e697e56cf.tar.zst
nixlib-387b38e10b846fd5a35adc00aec7e79e697e56cf.zip
Revert "rkt: align stage1 information with upstream source"
Diffstat (limited to 'pkgs/applications/virtualization/rkt/default.nix')
-rw-r--r--pkgs/applications/virtualization/rkt/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix
index 801f658d0380..eb2a5d737a3e 100644
--- a/pkgs/applications/virtualization/rkt/default.nix
+++ b/pkgs/applications/virtualization/rkt/default.nix
@@ -2,11 +2,11 @@
 , fetchurl, fetchFromGitHub }:
 
 let
-  coreosImageRelease = "794.1.0";
-  coreosImageSystemdVersion = "222";
+  coreosImageRelease = "835.9.0";
+  coreosImageSystemdVersion = "225";
 
   # TODO: track https://github.com/coreos/rkt/issues/1758 to allow "host" flavor.
-  stage1Flavours = [ "coreos" "fly" ];
+  stage1Flavours = [ "coreos" ];
 
 in stdenv.mkDerivation rec {
   version = "0.14.0";
@@ -22,7 +22,7 @@ in stdenv.mkDerivation rec {
 
   stage1BaseImage = fetchurl {
     url = "http://stable.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz";
-    sha256 = "05nzl3av6cawr8v203a8c95c443g6h1nfy2n4jmgvn0j4iyy44ym";
+    sha256 = "51dc10b4269b9c1801c233de49da817d29ca8d858bb0881df94dc90f7e86ce70";
   };
 
   buildInputs = [ autoconf automake go file git wget gnupg1 squashfsTools cpio ];