Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / servers / gopher / gofish / default.nix
blobd346c1372997bc86445538c7a51a3921cad61346
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
5   pname = "gofish";
6   version = "1.2";
8   src = fetchurl {
9     url = "mirror://sourceforge/project/gofish/gofish/${version}/${pname}-${version}.tar.gz";
10     sha256 = "0br5nvlna86k4ya4q13gz0i7nlmk225lqmpfiqlkldxkr473kf0s";
11   };
13   meta = with lib; {
14     description = "A lightweight Gopher server";
15     homepage = "https://gofish.sourceforge.net/";
16     license = licenses.gpl2;
17     maintainers = [ maintainers.AndersonTorres ];
18     platforms = platforms.unix;
19   };