summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorRémy Grünblatt <remy@grunblatt.org>2020-12-05 16:21:18 +0100
committerRémy Grünblatt <remy@grunblatt.org>2020-12-05 16:38:36 +0100
commit329c968e50a1add9ff5dac88ccca39e916e15d74 (patch)
tree59d0bbd11edbe1f94b263bdc38395780df414c25 /pkgs/tools/inputmethods
parentdc716db68f6492b1bfe303d905561f7d48eacbcf (diff)
netevent: init at 20201018
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/netevent/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/netevent/default.nix b/pkgs/tools/inputmethods/netevent/default.nix
new file mode 100644
index 000000000000..f845111f4b94
--- /dev/null
+++ b/pkgs/tools/inputmethods/netevent/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchFromGitHub, docutils, installShellFiles }:
+
+stdenv.mkDerivation {
+ pname = "netevent";
+ version = "20201018";
+
+ src = fetchFromGitHub {
+ owner = "Blub";
+ repo = "netevent";
+ rev = "ddd330f0dc956a95a111c58ad10546071058e4c1";
+ sha256 = "0myk91pmim0m51h4b8hplkbxvns0icvfmv0401r0hw8md828nh5c";
+ };
+
+ buildInputs = [ docutils ];
+ nativeBuildInputs = [ installShellFiles ];
+
+ outputs = [ "out" "doc" "man" ];
+
+ configurePhase = ''
+ export RST2MAN=rst2man
+ ./configure
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ install -m 0755 netevent $out/bin/
+
+ installManPage doc/netevent.1
+
+ mkdir -p $doc/share/doc/netevent
+ cp doc/netevent.rst $doc/share/doc/netevent/netevent.rst
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Share linux event devices with other machines";
+ homepage = "https://github.com/Blub/netevent";
+ license = licenses.gpl2Only;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ rgrunbla ];
+ };
+}