about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2022-06-28 15:43:04 +0900
committerNguyễn Gia Phong <mcsinyx@disroot.org>2022-06-30 17:22:12 +0900
commit512670498f288c98279bfae0910a2811b9dd51e2 (patch)
tree48fd4251cebd97596d594fac62e9665174db6533 /pkgs/servers
parentf2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5 (diff)
phylactery: init at 0.1.1
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/web-apps/phylactery/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/servers/web-apps/phylactery/default.nix b/pkgs/servers/web-apps/phylactery/default.nix
new file mode 100644
index 0000000000000..72687e2065dc3
--- /dev/null
+++ b/pkgs/servers/web-apps/phylactery/default.nix
@@ -0,0 +1,26 @@
+{ lib, buildGoPackage, fetchFromSourcehut }:
+
+buildGoPackage rec {
+  pname = "phylactery";
+  version = "0.1.1";
+
+  goPackagePath = "git.sr.ht/~cnx/phylactery";
+
+  src = fetchFromSourcehut {
+    owner = "~cnx";
+    repo = pname;
+    rev = version;
+    sha256 = "sha256-HcpdPQ1WOMFNdfsZb//GvUVBCbmS3jARbcXjchlv2oE=";
+  };
+
+  # Upstream repo doesn't provide any test.
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Old school comic web server";
+    homepage = "https://git.sr.ht/~cnx/phylactery";
+    license = licenses.agpl3Plus;
+    maintainers = with maintainers; [ McSinyx ];
+    platforms = platforms.all;
+  };
+}