about summary refs log tree commit diff
path: root/pkgs/tools/misc/clematis
diff options
context:
space:
mode:
authorGabriel Fontes <hi@m7.rs>2022-11-10 22:16:02 -0300
committerGabriel Fontes <hi@m7.rs>2022-11-18 12:24:12 -0300
commit1a55c66f8e96c8460cf55bd45ebe9dc766ed2cb3 (patch)
tree88500e2505c8d34878c5ee7e1a02a08211665461 /pkgs/tools/misc/clematis
parente378aa676d213579e5b92f9b284c3c98e3985ed1 (diff)
clematis: init at 2022-04-16
Diffstat (limited to 'pkgs/tools/misc/clematis')
-rw-r--r--pkgs/tools/misc/clematis/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/misc/clematis/default.nix b/pkgs/tools/misc/clematis/default.nix
new file mode 100644
index 0000000000000..c1997876aee94
--- /dev/null
+++ b/pkgs/tools/misc/clematis/default.nix
@@ -0,0 +1,26 @@
+{ buildGoModule
+, fetchFromGitHub
+, lib
+}:
+
+buildGoModule rec {
+  pname = "clematis";
+  version = "2022-04-16";
+
+  src = fetchFromGitHub {
+    owner = "TorchedSammy";
+    repo = "clematis";
+    rev = "cbe74da084b9d3f6893f53721c27cd0f3a45fe93";
+    sha256 = "sha256-TjoXHbY0vUQ2rhwdCJ/s/taRd9/MG0P9HaEw2BOIy/s=";
+  };
+
+  vendorSha256 = "sha256-YKu+7LFUoQwCH//URIswiaqa0rmnWZJvuSn/68G3TUA=";
+
+  meta = with lib; {
+    description = "Discord rich presence for MPRIS music players.";
+    homepage = "https://github.com/TorchedSammy/Clematis";
+    license = licenses.mit;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ misterio77 ];
+  };
+}