about summary refs log tree commit diff
path: root/pkgs/servers/gopher/gofish
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@gmail.com>2016-07-20 20:19:06 -0300
committerRok Garbas <rok@garbas.si>2016-07-21 01:19:06 +0200
commit79f6c2603c1f50f54ad8aa4d9eec5ad633173c88 (patch)
tree3e5da699f0de254efcf8b0a3b7be5844a83aae0d /pkgs/servers/gopher/gofish
parent5682279d1404ce1a935b63a267327ec5176208e3 (diff)
downloadnixlib-79f6c2603c1f50f54ad8aa4d9eec5ad633173c88.tar
nixlib-79f6c2603c1f50f54ad8aa4d9eec5ad633173c88.tar.gz
nixlib-79f6c2603c1f50f54ad8aa4d9eec5ad633173c88.tar.bz2
nixlib-79f6c2603c1f50f54ad8aa4d9eec5ad633173c88.tar.lz
nixlib-79f6c2603c1f50f54ad8aa4d9eec5ad633173c88.tar.xz
nixlib-79f6c2603c1f50f54ad8aa4d9eec5ad633173c88.tar.zst
nixlib-79f6c2603c1f50f54ad8aa4d9eec5ad633173c88.zip
Gofish: nit at 1.2 (#16532)
Gofish is a lightweight Gopher server.
Diffstat (limited to 'pkgs/servers/gopher/gofish')
-rw-r--r--pkgs/servers/gopher/gofish/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/servers/gopher/gofish/default.nix b/pkgs/servers/gopher/gofish/default.nix
new file mode 100644
index 000000000000..754cba588258
--- /dev/null
+++ b/pkgs/servers/gopher/gofish/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+
+  name = "gofish-${version}";
+  version = "1.2";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/project/gofish/gofish/${version}/${name}.tar.gz";
+    sha256 = "0br5nvlna86k4ya4q13gz0i7nlmk225lqmpfiqlkldxkr473kf0s";
+  };
+  	
+  meta = with stdenv.lib; {
+    description = "A lightweight Gopher server";
+    homepage = http://gofish.sourceforge.net/;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.AndersonTorres ];
+    platforms = platforms.unix;
+  };
+}