about summary refs log tree commit diff
path: root/pkgs/tools/admin/lxd
diff options
context:
space:
mode:
authorZack Piper <zack.piper123@gmail.com>2016-06-19 19:02:07 +0000
committerZack Piper <zack.piper123@gmail.com>2016-06-19 20:21:03 +0100
commitbd1e99a5edc3c437ccbb719d576609f1836bd471 (patch)
treed6cff689fa0cdd11cf7eb7cf77b8682d30bb7541 /pkgs/tools/admin/lxd
parent6fd8e5719bf8ef45f38ec582747c2a1eb712264a (diff)
downloadnixlib-bd1e99a5edc3c437ccbb719d576609f1836bd471.tar
nixlib-bd1e99a5edc3c437ccbb719d576609f1836bd471.tar.gz
nixlib-bd1e99a5edc3c437ccbb719d576609f1836bd471.tar.bz2
nixlib-bd1e99a5edc3c437ccbb719d576609f1836bd471.tar.lz
nixlib-bd1e99a5edc3c437ccbb719d576609f1836bd471.tar.xz
nixlib-bd1e99a5edc3c437ccbb719d576609f1836bd471.tar.zst
nixlib-bd1e99a5edc3c437ccbb719d576609f1836bd471.zip
lxd: 2.0.0.rc4 -> 2.0.2
Diffstat (limited to 'pkgs/tools/admin/lxd')
-rw-r--r--pkgs/tools/admin/lxd/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/tools/admin/lxd/default.nix b/pkgs/tools/admin/lxd/default.nix
index c8717ad1f6cb..be7d534b3d6e 100644
--- a/pkgs/tools/admin/lxd/default.nix
+++ b/pkgs/tools/admin/lxd/default.nix
@@ -2,7 +2,7 @@
 
 buildGoPackage rec {
   name = "lxd-${version}";
-  version = "2.0.0.rc4";
+  version = "2.0.2";
   rev = "lxd-${version}";
 
   goPackagePath = "github.com/lxc/lxd";
@@ -11,7 +11,7 @@ buildGoPackage rec {
     inherit rev;
     owner = "lxc";
     repo = "lxd";
-    sha256 = "1rpyyj6d38d9kmb47dcmy1x41fiacj384yx01yslsrj2l6qxcdjn";
+    sha256 = "1rs9g1snjymg6pjz5bj77zk5wbs0w8xmrfxzqs32w6zr1dxhf9hs";
   };
 
   goDeps = ./deps.json;
@@ -19,10 +19,6 @@ buildGoPackage rec {
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ lxc ];
 
-  postInstall = ''
-    cp go/src/$goPackagePath/scripts/lxd-images $bin/bin
-  '';
-
   meta = with stdenv.lib; {
     description = "Daemon based on liblxc offering a REST API to manage containers";
     homepage = https://github.com/lxc/lxd;