Skip to content

Commit

Permalink
geomyidae: init at 0.34
Browse files Browse the repository at this point in the history
register myself as maintainer
  • Loading branch information
rapenne-s committed Sep 26, 2020
1 parent 1e501a4 commit e76fe3d
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Expand Up @@ -7955,6 +7955,12 @@
githubId = 2157287;
name = "sohalt";
};
solene = {
email = "solene@perso.pw";
github = "rapenne-s";
githubId = 248016;
name = "Solène Rapenne";
};
solson = {
email = "scott@solson.me";
github = "solson";
Expand Down
24 changes: 24 additions & 0 deletions pkgs/servers/gopher/geomyidae/default.nix
@@ -0,0 +1,24 @@
{ stdenv, fetchgit, libressl }:

stdenv.mkDerivation rec {

pname = "geomyidae";
version = "0.34";

src = fetchgit {
url = "git://bitreich.org/geomyidae";
rev = version;
sha256 = "0sbfc7s7575jgsgn6q9fn63j1k2vw0w52k6bixx4f7cyx0sj2p94";
};

buildInputs = [ libressl ];
makeFlags = [ "PREFIX=$(out)" ];

meta = with stdenv.lib; {
description = "A gopher daemon for Linux/BSD";
homepage = "gopher://bitreich.org/1/scm/geomyidae";
license = licenses.mit;
maintainers = [ maintainers.solene ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -3913,6 +3913,8 @@ in

genimage = callPackage ../tools/filesystems/genimage { };

geomyidae = callPackage ../servers/gopher/geomyidae {};

geonkick = callPackage ../applications/audio/geonkick {};

gerrit = callPackage ../applications/version-management/gerrit { };
Expand Down

0 comments on commit e76fe3d

Please sign in to comment.