mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
elvish: 0.11 -> 0.12
This commit is contained in:
parent
4c58c20efc
commit
88cdecf34c
1 changed files with 5 additions and 4 deletions
|
@ -1,21 +1,22 @@
|
||||||
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
name = "elvish-${version}";
|
name = "elvish-${version}";
|
||||||
version = "0.11";
|
version = "0.12";
|
||||||
|
|
||||||
goPackagePath = "github.com/elves/elvish";
|
goPackagePath = "github.com/elves/elvish";
|
||||||
|
excludedPackages = [ "website" ];
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
repo = "elvish";
|
repo = "elvish";
|
||||||
owner = "elves";
|
owner = "elves";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1rzgy1ql381nwsdjgiwv4mdr1xwivnpmzgkdzms8ipn2lbwhff87";
|
sha256 = "1vvbgkpnrnb5aaak4ks45wl0cyp0vbry8bpxl6v2dpmq9x0bscpp";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A friendly and expressive Unix shell";
|
description = "A friendly and expressive Unix shell";
|
||||||
homepage = https://github.com/elves/elvish;
|
homepage = https://elv.sh/;
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ vrthra ];
|
maintainers = with maintainers; [ vrthra ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = with platforms; linux ++ darwin;
|
||||||
|
|
Loading…
Reference in a new issue