{ stdenv, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "elvish"; version = "0.13"; goPackagePath = "github.com/elves/elvish"; excludedPackages = [ "website" ]; buildFlagsArray = '' -ldflags= -X ${goPackagePath}/buildinfo.Version=${version} ''; src = fetchFromGitHub { owner = "elves"; repo = pname; rev = "v${version}"; sha256 = "0fprii430p9w8x4wq93iqkgkwi5kypwwlnzgvlcz0mkksayk8bzg"; }; modSha256 = "13x4wbfj8049ygm3zbgzyr2bm4sq4x6xddrxx6shr8fydlcf1g8v"; 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"; }; }