about summary refs log tree commit diff
path: root/pkgs/applications/networking/gopher
diff options
context:
space:
mode:
authorTroels Henriksen <athas@sigkill.dk>2022-05-28 19:54:39 +0200
committerTroels Henriksen <athas@sigkill.dk>2022-05-30 09:57:16 +0200
commit90a741547ea72c14f7eb26f1e72604b7c3a66e21 (patch)
tree5c4d2ae6ed265ca9c3cbb942656517000b3f5889 /pkgs/applications/networking/gopher
parentf37f4ab9756bf5e7313ee351a98efbf2ff536a96 (diff)
downloadnixlib-90a741547ea72c14f7eb26f1e72604b7c3a66e21.tar
nixlib-90a741547ea72c14f7eb26f1e72604b7c3a66e21.tar.gz
nixlib-90a741547ea72c14f7eb26f1e72604b7c3a66e21.tar.bz2
nixlib-90a741547ea72c14f7eb26f1e72604b7c3a66e21.tar.lz
nixlib-90a741547ea72c14f7eb26f1e72604b7c3a66e21.tar.xz
nixlib-90a741547ea72c14f7eb26f1e72604b7c3a66e21.tar.zst
nixlib-90a741547ea72c14f7eb26f1e72604b7c3a66e21.zip
geomyidae: init at 0.50.1
Diffstat (limited to 'pkgs/applications/networking/gopher')
-rw-r--r--pkgs/applications/networking/gopher/geomyidae/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/gopher/geomyidae/default.nix b/pkgs/applications/networking/gopher/geomyidae/default.nix
new file mode 100644
index 000000000000..c9aa26ad9874
--- /dev/null
+++ b/pkgs/applications/networking/gopher/geomyidae/default.nix
@@ -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;
+  };
+}