about summary refs log tree commit diff
path: root/pkgs/tools/misc/snore
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-10-17 21:00:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-10-17 21:00:00 -0500
commit8f4e51b0c669d858fafff9381363ab32677b5705 (patch)
tree73fe8cc35407ff617e97eb88ba82fa0b711e473f /pkgs/tools/misc/snore
parent5617886b16ccf0b5e9bf6c7f93d79162cc14fad3 (diff)
snore: init at 0.1
Diffstat (limited to 'pkgs/tools/misc/snore')
-rw-r--r--pkgs/tools/misc/snore/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/misc/snore/default.nix b/pkgs/tools/misc/snore/default.nix
new file mode 100644
index 0000000000000..f6f177811b025
--- /dev/null
+++ b/pkgs/tools/misc/snore/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  version = "0.1";
+  pname = "snore";
+
+  src = fetchFromGitHub {
+    owner = "clamiax";
+    repo = pname;
+    rev = version;
+    sha256 = "1ic1qy6ybnjlkz5rb1hpvq6dcdmxw5xcx34qcadrsfdjizxcv8pp";
+  };
+
+  makeFlags = [ "PREFIX=${placeholder "out"}" ];
+
+  meta = with stdenv.lib; {
+    description = "sleep with feedback";
+    homepage = "https://github.com/clamiax/snore";
+    license = licenses.mit;
+    maintainers = [ maintainers.marsam ];
+    platforms = platforms.unix;
+  };
+}