summaryrefslogtreecommitdiffstats
path: root/pkgs/shells
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2017-02-11 15:19:22 -0800
committerRobert Helgesson <robert@rycee.net>2017-02-12 21:37:53 +0100
commit939c846ae7c2b330dbc317e4703926dbd554b030 (patch)
treea454684e7d793c0c974331191759d5cf6b556d12 /pkgs/shells
parent06bacb10e5c0ae4af621648891da0aa979c8c8de (diff)
elvish: 0.1 -> 0.5
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/elvish/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/shells/elvish/default.nix b/pkgs/shells/elvish/default.nix
index 884f34dcf022..7dc6029acb42 100644
--- a/pkgs/shells/elvish/default.nix
+++ b/pkgs/shells/elvish/default.nix
@@ -2,15 +2,15 @@
buildGoPackage rec {
name = "elvish-${version}";
- version = "0.1";
+ version = "0.5";
goPackagePath = "github.com/elves/elvish";
src = fetchFromGitHub {
repo = "elvish";
owner = "elves";
- rev = "4125c2bb927330b0100b354817dd4ad252118ba6";
- sha256 = "1xwhjbw0y6j5xy19hz39456l0v6vjg2icd7c1jx4h1cydk3yn39f";
+ rev = version;
+ sha256 = "1dk5f8a2wpgd5cw45ippvx46fxk0yap64skfpzpiqz8bkbnrwbz6";
};
goDeps = ./deps.nix;
@@ -20,6 +20,6 @@ buildGoPackage rec {
homepage = https://github.com/elves/elvish;
license = licenses.bsd2;
maintainers = with maintainers; [ vrthra ];
- platforms = with platforms; [ linux ];
+ platforms = with platforms; linux;
};
}