From b97e4a1ac6443cf3a7661615be2766e57c9c95b5 Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Wed, 30 Oct 2013 13:59:38 +0000 Subject: [PATCH] fish: Update to 2.1.0 (close #1261) --- pkgs/shells/fish/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index 7beca2109ea6..27f2b032476e 100644 --- a/pkgs/shells/fish/default.nix +++ b/pkgs/shells/fish/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoconf, ncurses, which, groff, gettext }: stdenv.mkDerivation rec { - name = "fish-2.0.0"; + name = "fish-2.1.0"; src = fetchurl { - url = http://fishshell.com/files/2.0.0/fish-2.0.0.tar.gz; - sha1 = "2d28553e2ff975f8e5fed6b266f7a940493b6636"; + url = http://fishshell.com/files/2.1.0/fish-2.1.0.tar.gz; + sha1 = "b1764cba540055cb8e2a96a7ea4c844b04a32522"; }; nativeBuildInputs = [ autoconf ]; @@ -29,5 +29,6 @@ stdenv.mkDerivation rec { homepage = http://fishshell.com/; license = licenses.gpl2; platforms = platforms.linux; + maintainers = [ stdenv.lib.maintainers.ocharles ]; }; -} \ No newline at end of file +}