nixpkgs/pkgs/shells/fish/default.nix

25 lines
552 B
Nix
Raw Normal View History

2013-06-04 11:20:30 +02:00
{ stdenv, fetchurl, autoconf, ncurses, which }:
stdenv.mkDerivation rec {
name = "fish-2.0.0";
src = fetchurl {
url = http://fishshell.com/files/2.0.0/fish-2.0.0.tar.gz;
sha1 = "2d28553e2ff975f8e5fed6b266f7a940493b6636";
};
nativeBuildInputs = [ autoconf ];
buildInputs = [ ncurses which ];
preConfigure = ''
autoconf
'';
2013-09-25 22:08:40 +02:00
meta = with stdenv.lib; {
description = "Smart and user-friendly command line shell";
homepage = http://fishshell.com/;
license = licenses.gpl2;
platforms = platforms.linux;
2013-06-04 11:20:30 +02:00
};
}