summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2016-06-19 22:07:42 +0100
committerGitHub <noreply@github.com>2016-06-19 22:07:42 +0100
commit44d99e90e99ca2a13c1ea031382d89e32eb6a2aa (patch)
treebbd41379cf09509abdd7a0daefc9c0cba29ad57c /pkgs
parent9fa688379181133b2c0f06e2ef7ed495f8d6cfe2 (diff)
parentf36c8f5f54ac2c98dc447bfebe0f224600b882e7 (diff)
downloadnixlib-44d99e90e99ca2a13c1ea031382d89e32eb6a2aa.tar
nixlib-44d99e90e99ca2a13c1ea031382d89e32eb6a2aa.tar.gz
nixlib-44d99e90e99ca2a13c1ea031382d89e32eb6a2aa.tar.bz2
nixlib-44d99e90e99ca2a13c1ea031382d89e32eb6a2aa.tar.lz
nixlib-44d99e90e99ca2a13c1ea031382d89e32eb6a2aa.tar.xz
nixlib-44d99e90e99ca2a13c1ea031382d89e32eb6a2aa.tar.zst
nixlib-44d99e90e99ca2a13c1ea031382d89e32eb6a2aa.zip
Merge pull request #16348 from zackp30/fix_lxd_module
Fix lxd module
Diffstat (limited to 'pkgs')
-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;