nixpkgs/pkgs/shells/elvish/default.nix

38 lines
1 KiB
Nix
Raw Normal View History

2018-07-20 19:40:58 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "elvish";
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 {
owner = "elves";
repo = pname;
rev = "v${version}";
2018-07-20 19:40:58 +00:00
sha256 = "1vvbgkpnrnb5aaak4ks45wl0cyp0vbry8bpxl6v2dpmq9x0bscpp";
};
meta = with stdenv.lib; {
description = "A friendly and expressive command shell";
longDescription = ''
Elvish is a friendly interactive shell and an expressive programming
language. It runs on Linux, BSDs, macOS and Windows. Despite its pre-1.0
status, it is already suitable for most daily interactive use.
'';
2018-07-20 19:40:58 +00:00
homepage = https://elv.sh/;
license = licenses.bsd2;
maintainers = with maintainers; [ vrthra AndersonTorres ];
platforms = with platforms; linux ++ darwin;
};
passthru = {
shellPath = "/bin/elvish";
};
}