Skip to content

Commit

Permalink
Gofish: nit at 1.2 (#16532)
Browse files Browse the repository at this point in the history
Gofish is a lightweight Gopher server.
  • Loading branch information
AndersonTorres authored and garbas committed Jul 20, 2016
1 parent 5682279 commit 79f6c26
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions 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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -10170,6 +10170,8 @@ in

glabels = callPackage ../applications/graphics/glabels { };

gofish = callPackage ../servers/gopher/gofish { };

grafana = (callPackage ../servers/monitoring/grafana { }).bin // { outputs = ["bin"]; };

groovebasin = callPackage ../applications/audio/groovebasin { nodejs = nodejs-0_10; };
Expand Down

0 comments on commit 79f6c26

Please sign in to comment.