mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 10:53:52 +00:00
elvish: a small fixup (#54531)
* Elvish: a small fixup Fixing version variable in order to properly download the source code. Also, some minor stylistical modifications and additions. * elvish: use pname * Update pkgs/shells/elvish/default.nix Use `pname` instead of `name`. Co-Authored-By: AndersonTorres <torres.anderson.85@protonmail.com>
This commit is contained in:
parent
2c226107cb
commit
675ebc5559
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
name = "elvish-${version}";
|
pname = "elvish";
|
||||||
version = "0.12";
|
version = "0.12";
|
||||||
|
|
||||||
goPackagePath = "github.com/elves/elvish";
|
goPackagePath = "github.com/elves/elvish";
|
||||||
@ -12,17 +12,22 @@ buildGoPackage rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
repo = "elvish";
|
|
||||||
owner = "elves";
|
owner = "elves";
|
||||||
rev = version;
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
sha256 = "1vvbgkpnrnb5aaak4ks45wl0cyp0vbry8bpxl6v2dpmq9x0bscpp";
|
sha256 = "1vvbgkpnrnb5aaak4ks45wl0cyp0vbry8bpxl6v2dpmq9x0bscpp";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A friendly and expressive Unix shell";
|
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/;
|
homepage = https://elv.sh/;
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ vrthra ];
|
maintainers = with maintainers; [ vrthra AndersonTorres ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = with platforms; linux ++ darwin;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user