2018-07-20 12:40:58 -07:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-06-18 23:12:21 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "elvish-${version}";
|
2018-07-20 12:40:58 -07:00
|
|
|
version = "0.12";
|
2017-09-21 04:20:37 -07:00
|
|
|
|
2016-06-18 23:12:21 -07:00
|
|
|
goPackagePath = "github.com/elves/elvish";
|
2018-07-20 12:40:58 -07:00
|
|
|
excludedPackages = [ "website" ];
|
2016-06-18 23:12:21 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "elvish";
|
|
|
|
owner = "elves";
|
2017-02-11 15:19:22 -08:00
|
|
|
rev = version;
|
2018-07-20 12:40:58 -07:00
|
|
|
sha256 = "1vvbgkpnrnb5aaak4ks45wl0cyp0vbry8bpxl6v2dpmq9x0bscpp";
|
2016-06-18 23:12:21 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-07-05 13:37:11 -07:00
|
|
|
description = "A friendly and expressive Unix shell";
|
2018-07-20 12:40:58 -07:00
|
|
|
homepage = https://elv.sh/;
|
2016-06-18 23:12:21 -07:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2017-09-21 04:20:37 -07:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2016-06-18 23:12:21 -07:00
|
|
|
};
|
2018-06-29 10:36:59 -07:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/elvish";
|
|
|
|
};
|
2016-06-18 23:12:21 -07:00
|
|
|
}
|