about summary refs log tree commit diff
path: root/pkgs/tools/misc/void
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-01-07 19:01:23 +0100
committerKatharina Fey <kookie@spacekookie.de>2019-01-07 19:01:23 +0100
commit6a6cd025fccd1b2280ae571b2ef780619a747fbf (patch)
tree4550619dcb67b4a6a59af04291142d0d6d9200ff /pkgs/tools/misc/void
parent75b4b5fc99f0a9cc8274bb449c780a4232538f71 (diff)
void: init at 1.1.5
Diffstat (limited to 'pkgs/tools/misc/void')
-rw-r--r--pkgs/tools/misc/void/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/misc/void/default.nix b/pkgs/tools/misc/void/default.nix
new file mode 100644
index 0000000000000..32747ccbf4404
--- /dev/null
+++ b/pkgs/tools/misc/void/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+  name = "void-${version}";
+  version = "1.1.5";
+
+  src = fetchFromGitHub {
+    owner = "spacejam";
+    repo = "void";
+    rev = "${version}";
+    sha256 = "08vazw4rszqscjz988k89z28skyj3grm81bm5iwknxxagmrb20fz";
+  };
+
+  # The tests are long-running and not that useful
+  checkPhase = null;
+
+  cargoSha256 = "1rq947s82icl7gdkjynjwz426bpmd96dip2dv2y7p8rg7yz29x0m";
+
+  meta = with stdenv.lib; {
+    description = "Terminal-based personal organizer";
+    homepage = https://github.com/spacejam/void;
+    license = licenses.mit;
+    maintainers = with maintainers; [ spacekookie ];
+    platforms = platforms.all;
+  };
+}