2016-06-19 07:12:21 +01:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "elvish-${version}";
|
2018-01-31 22:32:49 +00:00
|
|
|
version = "0.11";
|
2017-09-21 12:20:37 +01:00
|
|
|
|
2016-06-19 07:12:21 +01:00
|
|
|
goPackagePath = "github.com/elves/elvish";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "elvish";
|
|
|
|
owner = "elves";
|
2017-02-11 23:19:22 +00:00
|
|
|
rev = version;
|
2018-01-31 22:32:49 +00:00
|
|
|
sha256 = "1rzgy1ql381nwsdjgiwv4mdr1xwivnpmzgkdzms8ipn2lbwhff87";
|
2016-06-19 07:12:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-07-05 21:37:11 +01:00
|
|
|
description = "A friendly and expressive Unix shell";
|
2016-06-19 07:12:21 +01:00
|
|
|
homepage = https://github.com/elves/elvish;
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2017-09-21 12:20:37 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2016-06-19 07:12:21 +01:00
|
|
|
};
|
|
|
|
}
|