mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
|
|
|
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";
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
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";
|
|
};
|
|
}
|