mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
9d49cf1808
Without this fix, `elvish -version` displays "unknown"
33 lines
763 B
Nix
33 lines
763 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "elvish-${version}";
|
|
version = "0.12";
|
|
|
|
goPackagePath = "github.com/elves/elvish";
|
|
excludedPackages = [ "website" ];
|
|
buildFlagsArray = ''
|
|
-ldflags=
|
|
-X ${goPackagePath}/buildinfo.Version=${version}
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "elvish";
|
|
owner = "elves";
|
|
rev = version;
|
|
sha256 = "1vvbgkpnrnb5aaak4ks45wl0cyp0vbry8bpxl6v2dpmq9x0bscpp";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A friendly and expressive Unix shell";
|
|
homepage = https://elv.sh/;
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ vrthra ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
};
|
|
|
|
passthru = {
|
|
shellPath = "/bin/elvish";
|
|
};
|
|
}
|