nixpkgs/pkgs/applications/virtualization/rkt/default.nix

65 lines
1.9 KiB
Nix
Raw Normal View History

2016-02-05 07:41:35 +01:00
{ stdenv, lib, autoreconfHook, acl, go, file, git, wget, gnupg1, trousers, squashfsTools,
2016-04-23 20:33:21 +02:00
cpio, fetchurl, fetchFromGitHub, iptables, systemd, makeWrapper, glibc }:
2015-08-19 12:04:34 +02:00
let
2016-04-23 20:33:21 +02:00
coreosImageRelease = "991.0.0";
coreosImageSystemdVersion = "225";
# TODO: track https://github.com/coreos/rkt/issues/1758 to allow "host" flavor.
2016-01-15 14:11:08 +01:00
stage1Flavours = [ "coreos" "fly" "host" ];
in stdenv.mkDerivation rec {
2016-05-05 12:01:58 +02:00
version = "1.5.1";
2015-08-19 12:04:34 +02:00
name = "rkt-${version}";
BUILDDIR="build-${name}";
2015-08-19 12:04:34 +02:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "coreos";
repo = "rkt";
2016-05-05 12:01:58 +02:00
sha256 = "1y99m0ay9qj5a0rb657abdjmwjvqi9dh3k6xr0npmx6vnvwpxs58";
2015-08-19 12:04:34 +02:00
};
stage1BaseImage = fetchurl {
url = "http://alpha.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz";
2016-04-23 20:33:21 +02:00
sha256 = "1vaimrbynhjh4f30rq92bv1h3c1lxnf8isx5c2qvnn3lghypss9k";
};
2016-01-15 14:11:08 +01:00
buildInputs = [
2016-04-23 20:33:21 +02:00
glibc.out glibc.static
2016-02-05 07:41:35 +01:00
autoreconfHook go file git wget gnupg1 trousers squashfsTools cpio acl systemd
2016-01-15 14:11:08 +01:00
makeWrapper
];
2015-08-19 12:04:34 +02:00
preConfigure = ''
./autogen.sh
configureFlagsArray=(
--with-stage1-flavors=${builtins.concatStringsSep "," stage1Flavours}
${if lib.findFirst (p: p == "coreos") null stage1Flavours != null then "
--with-coreos-local-pxe-image-path=${stage1BaseImage}
--with-coreos-local-pxe-image-systemd-version=v${coreosImageSystemdVersion}
" else "" }
);
2015-08-19 12:04:34 +02:00
'';
preBuild = ''
export BUILDDIR
'';
2015-08-19 12:04:34 +02:00
installPhase = ''
mkdir -p $out/bin
cp -Rv $BUILDDIR/bin/* $out/bin
2016-01-15 14:11:08 +01:00
wrapProgram $out/bin/rkt \
--prefix LD_LIBRARY_PATH : ${systemd}/lib \
--prefix PATH : ${iptables}/bin
2015-08-19 12:04:34 +02:00
'';
2015-08-19 12:04:34 +02:00
meta = with lib; {
description = "A fast, composable, and secure App Container runtime for Linux";
homepage = https://github.com/coreos/rkt;
2015-08-19 12:04:34 +02:00
license = licenses.asl20;
maintainers = with maintainers; [ ragge steveej ];
2015-08-26 18:55:22 +02:00
platforms = [ "x86_64-linux" ];
2015-08-19 12:04:34 +02:00
};
}