nixpkgs/pkgs/tools/admin/lxd/default.nix

30 lines
726 B
Nix
Raw Normal View History

2016-06-06 00:28:52 +00:00
{ stdenv, lib, pkgconfig, lxc, buildGoPackage, fetchFromGitHub }:
2016-06-03 13:55:03 +00:00
buildGoPackage rec {
name = "lxd-${version}";
version = "2.12";
2016-06-03 13:55:03 +00:00
rev = "lxd-${version}";
goPackagePath = "github.com/lxc/lxd";
src = fetchFromGitHub {
inherit rev;
owner = "lxc";
repo = "lxd";
sha256 = "1znqsf6iky21kddvl13bf0lsj65czabwysdbvha24lm16s51mv0p";
2016-06-03 13:55:03 +00:00
};
goDeps = ./deps.nix;
2016-06-03 13:55:03 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ lxc ];
meta = with stdenv.lib; {
description = "Daemon based on liblxc offering a REST API to manage containers";
homepage = https://github.com/lxc/lxd;
license = licenses.asl20;
maintainers = with maintainers; [ globin fpletz ];
platforms = platforms.linux;
};
}