about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-07-29 17:19:39 +0200
committerGitHub <noreply@github.com>2023-07-29 17:19:39 +0200
commit8175297e0c20c7367fa6161ddba8ead0000c0782 (patch)
treec6bc70020e30513dc1931584ebdb4600b7def477 /pkgs/applications
parent9664ef8cc7efadd4d21d633394562c6a22583aa1 (diff)
parenta8ef9de943c6e487e1f30e8be831daebc369bfef (diff)
Merge pull request #246023 from aacebedo/aacebedo/acpic_1.0.0
acpic: init at 1.0.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/acpic/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/misc/acpic/default.nix b/pkgs/applications/misc/acpic/default.nix
new file mode 100644
index 0000000000000..6b37ef6b8e653
--- /dev/null
+++ b/pkgs/applications/misc/acpic/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, fetchPypi
+, python3Packages
+}:
+
+python3Packages.buildPythonApplication rec {
+  pname = "acpic";
+  version = "1.0.0";
+  format = "setuptools";
+
+  src = fetchPypi {
+    inherit version pname;
+    hash = "sha256-vQ9VxCNbOmqHIY3e1wq1wNJl5ywfU2tm62gDg3vKvcg=";
+  };
+
+  nativeBuildInputs = [
+    python3Packages.pbr
+  ];
+
+  # no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Daemon extending acpid event handling capabilities.";
+    homepage = "https://github.com/psliwka/acpic";
+    license = licenses.wtfpl;
+    maintainers = with maintainers; [ aacebedo ];
+  };
+}