summary refs log tree commit diff
path: root/pkgs/shells/fish
diff options
context:
space:
mode:
authorOliver Charles <ollie@ocharles.org.uk>2013-06-04 10:20:30 +0100
committerOliver Charles <ollie@ocharles.org.uk>2013-06-04 10:20:30 +0100
commit49d0f50f0ce28d08d6cab2cf86b51c704ee1a7fa (patch)
tree49f9bb6fcb60c7c3d817e53998afb2b6cf2177b4 /pkgs/shells/fish
parentcb5b198b514e9ed214627ab91ed93082a1789541 (diff)
downloadnixpkgs-49d0f50f0ce28d08d6cab2cf86b51c704ee1a7fa.tar
nixpkgs-49d0f50f0ce28d08d6cab2cf86b51c704ee1a7fa.tar.gz
nixpkgs-49d0f50f0ce28d08d6cab2cf86b51c704ee1a7fa.tar.bz2
nixpkgs-49d0f50f0ce28d08d6cab2cf86b51c704ee1a7fa.tar.lz
nixpkgs-49d0f50f0ce28d08d6cab2cf86b51c704ee1a7fa.tar.xz
nixpkgs-49d0f50f0ce28d08d6cab2cf86b51c704ee1a7fa.tar.zst
nixpkgs-49d0f50f0ce28d08d6cab2cf86b51c704ee1a7fa.zip
fish: Add fish 2.0.0
Diffstat (limited to 'pkgs/shells/fish')
-rw-r--r--pkgs/shells/fish/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix
new file mode 100644
index 00000000000..091da2c68f0
--- /dev/null
+++ b/pkgs/shells/fish/default.nix
@@ -0,0 +1,22 @@
+{ 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
+  '';
+
+  meta = {
+    homepage = http://fishshell.com;
+  };
+}
\ No newline at end of file