summary refs log tree commit diff
path: root/pkgs/servers/gopher/gofish/default.nix
blob: db3bcb47ecc7a4d60da94db28d18d9aad27fa760 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {

  pname = "gofish";
  version = "1.2";

  src = fetchurl {
    url = "mirror://sourceforge/project/gofish/gofish/${version}/${pname}-${version}.tar.gz";
    sha256 = "0br5nvlna86k4ya4q13gz0i7nlmk225lqmpfiqlkldxkr473kf0s";
  };

  meta = with lib; {
    description = "A lightweight Gopher server";
    homepage = "http://gofish.sourceforge.net/";
    license = licenses.gpl2;
    maintainers = [ maintainers.AndersonTorres ];
    platforms = platforms.unix;
  };
}