Merge pull request #175163 from athas/geomyidae

geomyidae: init at 0.50.1
This commit is contained in:
Sergei Trofimovich 2022-05-30 08:20:53 +00:00 committed by GitHub
commit 93e6a4b607
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View 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;
};
}

View File

@ -17340,6 +17340,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 { };