summary refs log tree commit diff
path: root/pkgs/applications/misc/openring
diff options
context:
space:
mode:
authorSumner Evans <me@sumnerevans.com>2021-04-03 10:35:03 -0600
committerSumner Evans <me@sumnerevans.com>2021-04-03 15:37:34 -0600
commitfa07c270b63b1f4d38dc03b23cd47d1eb38defa8 (patch)
treeb0bb2c70c6366b4e7b0bd1a0950718f5112d767b /pkgs/applications/misc/openring
parent7e3eb490ece0ae5a54b2bf3e7ad7f40db5be90dc (diff)
downloadnixpkgs-fa07c270b63b1f4d38dc03b23cd47d1eb38defa8.tar
nixpkgs-fa07c270b63b1f4d38dc03b23cd47d1eb38defa8.tar.gz
nixpkgs-fa07c270b63b1f4d38dc03b23cd47d1eb38defa8.tar.bz2
nixpkgs-fa07c270b63b1f4d38dc03b23cd47d1eb38defa8.tar.lz
nixpkgs-fa07c270b63b1f4d38dc03b23cd47d1eb38defa8.tar.xz
nixpkgs-fa07c270b63b1f4d38dc03b23cd47d1eb38defa8.tar.zst
nixpkgs-fa07c270b63b1f4d38dc03b23cd47d1eb38defa8.zip
openring: init at f13edb5d
Initialize the openring package from
https://git.sr.ht/~sircmpwn/openring
Diffstat (limited to 'pkgs/applications/misc/openring')
-rw-r--r--pkgs/applications/misc/openring/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/misc/openring/default.nix b/pkgs/applications/misc/openring/default.nix
new file mode 100644
index 00000000000..6d840b1d9e7
--- /dev/null
+++ b/pkgs/applications/misc/openring/default.nix
@@ -0,0 +1,25 @@
+{ buildGoModule, fetchFromSourcehut, lib }:
+
+buildGoModule rec {
+  pname = "openring";
+  version = "unstable-2021-04-03";
+
+  src = fetchFromSourcehut {
+    owner = "~sircmpwn";
+    repo = pname;
+    rev = "f13edb5dfd882ce608d61cf6b6740650ce9d84a3";
+    sha256 = "sha256-Z65V77JZ9jCzBg7T2+d5Agxxd+MV2R7nYcLedYP5eOE=";
+  };
+
+  vendorSha256 = "sha256-BbBTmkGyLrIWphXC+dBaHaVzHuXRZ+4N/Jt2k3nF7Z4=";
+
+  # The package has no tests.
+  doCheck = false;
+
+  meta = with lib; {
+    description = "A webring for static site generators";
+    homepage = "https://git.sr.ht/~sircmpwn/openring";
+    license = licenses.gpl3Only;
+    maintainers = with maintainers; [ sumnerevans ];
+  };
+}