Skip to content

Commit

Permalink
Merge pull request #19677 from jgeerds/deis
Browse files Browse the repository at this point in the history
deis: 1.13.0 -> 1.13.3
  • Loading branch information
jgeerds committed Oct 19, 2016
2 parents 9803ad8 + c7d9de0 commit e376ed8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 34 deletions.
22 changes: 17 additions & 5 deletions pkgs/development/tools/deis/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "deis-${version}";
version = "1.13.0";
version = "1.13.3";
rev = "v${version}";

goPackagePath = "github.com/deis/deis";
subPackages = [ "client" ];

Expand All @@ -18,8 +18,20 @@ buildGoPackage rec {
inherit rev;
owner = "deis";
repo = "deis";
sha256 = "1qv9lxqx7m18029lj8cw3k7jngvxs4iciwrypdy0gd2nnghc68sw";
sha256 = "15q44jyjms8fdmly0z4sn4ymf1dx6cmdavgixjixdj2wbjw0yi2p";
};

goDeps = ./deps.nix;
preBuild = ''
export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace
'';

meta = with stdenv.lib; {
homepage = https://deis.io;
description = "A command line utility used to interact with the Deis open source PaaS.";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [
jgeerds
];
};
}
29 changes: 0 additions & 29 deletions pkgs/development/tools/deis/deps.nix

This file was deleted.

0 comments on commit e376ed8

Please sign in to comment.