Gofish: nit at 1.2 (#16532)

Gofish is a lightweight Gopher server.
This commit is contained in:
Anderson Torres 2016-07-20 20:19:06 -03:00 committed by Rok Garbas
parent 5682279d14
commit 79f6c2603c
2 changed files with 22 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -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; };