mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
79f6c2603c
Gofish is a lightweight Gopher server.
21 lines
521 B
Nix
21 lines
521 B
Nix
{ 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;
|
|
};
|
|
}
|