nixpkgs/pkgs/servers/gopher/gofish/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

21 lines
523 B
Nix

{ 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 stdenv.lib; {
description = "A lightweight Gopher server";
homepage = http://gofish.sourceforge.net/;
license = licenses.gpl2;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.unix;
};
}