nixpkgs/pkgs/shells/elvish/default.nix

33 lines
763 B
Nix
Raw Normal View History

2018-07-20 19:40:58 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "elvish-${version}";
2018-07-20 19:40:58 +00:00
version = "0.12";
goPackagePath = "github.com/elves/elvish";
2018-07-20 19:40:58 +00:00
excludedPackages = [ "website" ];
buildFlagsArray = ''
-ldflags=
-X ${goPackagePath}/buildinfo.Version=${version}
'';
src = fetchFromGitHub {
repo = "elvish";
owner = "elves";
2017-02-11 23:19:22 +00:00
rev = version;
2018-07-20 19:40:58 +00:00
sha256 = "1vvbgkpnrnb5aaak4ks45wl0cyp0vbry8bpxl6v2dpmq9x0bscpp";
};
meta = with stdenv.lib; {
2017-07-05 20:37:11 +00:00
description = "A friendly and expressive Unix shell";
2018-07-20 19:40:58 +00:00
homepage = https://elv.sh/;
license = licenses.bsd2;
maintainers = with maintainers; [ vrthra ];
platforms = with platforms; linux ++ darwin;
};
passthru = {
shellPath = "/bin/elvish";
};
}