about summary refs log tree commit diff
path: root/pkgs/development/python-modules/batinfo
diff options
context:
space:
mode:
authorLuflosi <luflosi@luflosi.de>2020-07-06 11:13:26 +0200
committerLuflosi <luflosi@luflosi.de>2020-07-13 15:58:13 +0200
commit97c8c99f1db7db9f27a4dfd80bbd28701850032c (patch)
treeab6ff5c03d0ebda4c7bde32cac00adbddec05c29 /pkgs/development/python-modules/batinfo
parent9730290b7771101043c259b785173086e719916a (diff)
batinfo: limit build to Linux
According to the README of batinfo, it runs only on Linux-based operating systems.
Diffstat (limited to 'pkgs/development/python-modules/batinfo')
-rw-r--r--pkgs/development/python-modules/batinfo/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/batinfo/default.nix b/pkgs/development/python-modules/batinfo/default.nix
index 57dfd5062c161..e8516aecdc65b 100644
--- a/pkgs/development/python-modules/batinfo/default.nix
+++ b/pkgs/development/python-modules/batinfo/default.nix
@@ -16,7 +16,7 @@ buildPythonPackage rec {
     homepage = "https://github.com/nicolargo/batinfo";
     description = "A simple Python lib to retrieve battery information";
     license = licenses.lgpl3;
-    platforms = platforms.all;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ koral ];
   };
 }