39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "elvish";
|
|
version = "0.13.1";
|
|
|
|
goPackagePath = "github.com/elves/elvish";
|
|
excludedPackages = [ "website" ];
|
|
buildFlagsArray = ''
|
|
-ldflags=
|
|
-X ${goPackagePath}/buildinfo.Version=${version}
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elves";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0lz9lf1swrn67kymcp2wh67lh3c0ifqm9035gpkd3zynlq3wzqfm";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
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.
|
|
'';
|
|
homepage = "https://elv.sh/";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ vrthra AndersonTorres ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
};
|
|
|
|
passthru = {
|
|
shellPath = "/bin/elvish";
|
|
};
|
|
} |