about summary refs log tree commit diff
path: root/pkgs/applications/virtualization
diff options
context:
space:
mode:
authorCole Mickens <cole.mickens@gmail.com>2016-02-04 22:41:35 -0800
committerCole Mickens <cole.mickens@gmail.com>2016-02-04 22:52:55 -0800
commit34f59ae3906fb2ee403624e7ea9407028f846cf6 (patch)
treeb9b02283843e12ff326a4293e13219b412f74bb8 /pkgs/applications/virtualization
parentc426ac4381ae043af20a387bda75b0b7d4a2aa12 (diff)
downloadnixlib-34f59ae3906fb2ee403624e7ea9407028f846cf6.tar
nixlib-34f59ae3906fb2ee403624e7ea9407028f846cf6.tar.gz
nixlib-34f59ae3906fb2ee403624e7ea9407028f846cf6.tar.bz2
nixlib-34f59ae3906fb2ee403624e7ea9407028f846cf6.tar.lz
nixlib-34f59ae3906fb2ee403624e7ea9407028f846cf6.tar.xz
nixlib-34f59ae3906fb2ee403624e7ea9407028f846cf6.tar.zst
nixlib-34f59ae3906fb2ee403624e7ea9407028f846cf6.zip
rkt 0.15.0 -> 1.0.0 + trousers
Diffstat (limited to 'pkgs/applications/virtualization')
-rw-r--r--pkgs/applications/virtualization/rkt/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix
index 43228b255a24..034f81556f1d 100644
--- a/pkgs/applications/virtualization/rkt/default.nix
+++ b/pkgs/applications/virtualization/rkt/default.nix
@@ -1,15 +1,15 @@
-{ stdenv, lib, autoreconfHook, acl, go, file, git, wget, gnupg1, squashfsTools,
+{ stdenv, lib, autoreconfHook, acl, go, file, git, wget, gnupg1, trousers, squashfsTools,
   cpio, fetchurl, fetchFromGitHub, iptables, systemd, makeWrapper }:
 
 let
-  coreosImageRelease = "794.1.0";
-  coreosImageSystemdVersion = "222";
+  coreosImageRelease = "835.12.0";
+  coreosImageSystemdVersion = "225";
 
   # TODO: track https://github.com/coreos/rkt/issues/1758 to allow "host" flavor.
   stage1Flavours = [ "coreos" "fly" "host" ];
 
 in stdenv.mkDerivation rec {
-  version = "0.15.0";
+  version = "1.0.0";
   name = "rkt-${version}";
   BUILDDIR="build-${name}";
 
@@ -17,16 +17,16 @@ in stdenv.mkDerivation rec {
       rev = "v${version}";
       owner = "coreos";
       repo = "rkt";
-      sha256 = "1pw14r38p8sdkma37xx0yy3zx5yxqc12zj35anmlbmrgw4vdgavf";
+      sha256 = "1m76hzx550dh35jpb8m46ks04ac3dfy4rg054v035rpwgh50ac6h";
   };
 
   stage1BaseImage = fetchurl {
-    url = "http://alpha.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz";
-    sha256 = "05nzl3av6cawr8v203a8c95c443g6h1nfy2n4jmgvn0j4iyy44ym";
+    url = "http://stable.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz";
+    sha256 = "0djzgfcqr9yy13i415204ji82lrk8mvdhl9rxjr123j1glf5sdh3";
   };
 
   buildInputs = [
-    autoreconfHook go file git wget gnupg1 squashfsTools cpio acl systemd
+    autoreconfHook go file git wget gnupg1 trousers squashfsTools cpio acl systemd
     makeWrapper
   ];