fish: 2.6.0 -> 2.7.0
This commit is contained in:
parent
13bb5ff402
commit
ee933bdb1d
@ -88,13 +88,15 @@ let
|
|||||||
|
|
||||||
fish = stdenv.mkDerivation rec {
|
fish = stdenv.mkDerivation rec {
|
||||||
name = "fish-${version}";
|
name = "fish-${version}";
|
||||||
version = "2.6.0";
|
version = "2.7.0";
|
||||||
|
|
||||||
etcConfigAppendix = builtins.toFile "etc-config.appendix.fish" etcConfigAppendixText;
|
etcConfigAppendix = builtins.toFile "etc-config.appendix.fish" etcConfigAppendixText;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://fishshell.com/files/${version}/${name}.tar.gz";
|
# There are differences between the release tarball and the tarball github packages from the tag
|
||||||
sha256 = "1yzx73kg5ng5ivhi68756sl5hpb8869110l9fwim6gn7f7bbprby";
|
# Hence we cannot use fetchFromGithub
|
||||||
|
url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${name}.tar.gz";
|
||||||
|
sha256 = "1jvvm27hp46w0cia14lfz6161dkz8b935j1m7j38i7rgx75bfxis";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ncurses libiconv pcre2 ];
|
buildInputs = [ ncurses libiconv pcre2 ];
|
||||||
|
Loading…
Reference in New Issue
Block a user