about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorKylie McClain <kylie@somas.is>2022-03-01 01:18:21 -0500
committerKylie McClain <kylie@somas.is>2022-06-06 21:06:49 -0400
commitf9b9e8b16f26ffd7985a1b4987cd417d295e04cd (patch)
treeae446a9e411c62dd949c2267783dc8cd6dfd338f /pkgs/tools
parent0eaa72390bacff63a6d2b8f22aeb288a83e53b1f (diff)
rwc: init at 0.2
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/rwc/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/system/rwc/default.nix b/pkgs/tools/system/rwc/default.nix
new file mode 100644
index 0000000000000..7180c2554702e
--- /dev/null
+++ b/pkgs/tools/system/rwc/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchFromGitHub, lib }:
+
+stdenv.mkDerivation rec {
+  pname = "rwc";
+  version = "0.2";
+
+  src = fetchFromGitHub {
+    owner = "leahneukirchen";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-axHBkrbLEcYygCDofhqfIeZ5pv1sR34I5UgFUwVb2rI=";
+  };
+
+  makeFlags = [ "PREFIX=$(out)" ];
+
+  meta = with lib; {
+    description = "Report when files are changed";
+    license = licenses.publicDomain;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ somasis ];
+  };
+}