mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
geomyidae: init at 0.50.1
This commit is contained in:
parent
f37f4ab975
commit
90a741547e
24
pkgs/applications/networking/gopher/geomyidae/default.nix
Normal file
24
pkgs/applications/networking/gopher/geomyidae/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, stdenv, fetchurl, libressl,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "geomyidae";
|
||||
version = "0.50.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "gopher://bitreich.org/9/scm/geomyidae/tag/geomyidae-v${version}.tar.gz";
|
||||
sha512 = "2a71b12f51c2ef8d6e791089f9eea49eb90a36be45b874d4234eba1e673186be945711be1f92508190f5c0a6f502f132c4b7cb82caf805a39a3f31903032ac47";
|
||||
};
|
||||
|
||||
buildInputs = [ libressl ];
|
||||
|
||||
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A gopher daemon for Linux/BSD";
|
||||
homepage = "gopher://bitreich.org/1/scm/geomyidae";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.athas ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -17335,6 +17335,8 @@ with pkgs;
|
||||
|
||||
geoipjava = callPackage ../development/libraries/java/geoipjava { };
|
||||
|
||||
geomyidae = callPackage ../applications/networking/gopher/geomyidae { };
|
||||
|
||||
geos = callPackage ../development/libraries/geos { };
|
||||
|
||||
geos39 = callPackage ../development/libraries/geos/3.9.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user