about summary refs log tree commit diff
path: root/pkgs/tools/misc/ristate
diff options
context:
space:
mode:
authorIlan Joselevich <personal@ilanjoselevich.com>2021-09-13 10:55:06 +0300
committerIlan Joselevich <personal@ilanjoselevich.com>2021-09-13 10:57:40 +0300
commitb417e6ec80a331403d8e6d4228ca5c60535c1056 (patch)
treec32c6e178788c073b2accd2415078e58a82a1602 /pkgs/tools/misc/ristate
parent5d735134226cd13d79b30d87d19f0708537a1796 (diff)
ristate: init at unstable-2021-09-10
Diffstat (limited to 'pkgs/tools/misc/ristate')
-rw-r--r--pkgs/tools/misc/ristate/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/misc/ristate/default.nix b/pkgs/tools/misc/ristate/default.nix
new file mode 100644
index 0000000000000..7c8dbb52181df
--- /dev/null
+++ b/pkgs/tools/misc/ristate/default.nix
@@ -0,0 +1,22 @@
+{ lib, rustPlatform, fetchFromGitLab }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "ristate";
+  version = "unstable-2021-09-10";
+
+  src = fetchFromGitLab {
+    owner = "snakedye";
+    repo = pname;
+    rev = "34dfd0a0bab5b36df118d8da3956fd938c625b15";
+    sha256 = "sha256-CH9DZ/7Bhbe6qKg1Nbj1rA9SzIsqVlBJg51XxAh0XnY=";
+  };
+
+  cargoSha256 = "sha256-HTfRWvE3m7XZhZDj5bEkrQI3pD6GNiKd2gJtMjRQ8Rw=";
+
+  meta = with lib; {
+    description = "A river-status client written in Rust";
+    homepage = "https://gitlab.com/snakedye/ristate";
+    license = licenses.mit;
+    maintainers = with maintainers; [ kranzes ];
+  };
+}