forked from mirrors/nixpkgs
gopher: init at 3.0.11 (#21080)
This commit is contained in:
parent
d568cb971b
commit
d6aff31f35
23
pkgs/applications/networking/gopher/gopher/default.nix
Normal file
23
pkgs/applications/networking/gopher/gopher/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{stdenv, fetchurl, ncurses}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gopher-${version}";
|
||||
version = "3.0.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://gopher.quux.org:70/devel/gopher/Downloads/gopher_${version}.tar.gz";
|
||||
sha256 = "15r7x518wlpfqpd6z0hbdwm8rw8ll8hbpskdqgxxhrmy00aa7w9c";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
preConfigure = "export LIBS=-lncurses";
|
||||
|
||||
meta = {
|
||||
homepage = http://gopher.quux.org:70/devel/gopher;
|
||||
description = "A ncurses gopher client";
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
|
||||
};
|
||||
}
|
|
@ -12966,6 +12966,8 @@ in
|
|||
|
||||
google-musicmanager = callPackage ../applications/audio/google-musicmanager { };
|
||||
|
||||
gopher = callPackage ../applications/networking/gopher/gopher { };
|
||||
|
||||
gpa = callPackage ../applications/misc/gpa { };
|
||||
|
||||
gpicview = callPackage ../applications/graphics/gpicview { };
|
||||
|
|
Loading…
Reference in a new issue