summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-25 12:58:42 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-25 12:58:42 +0100
commit4ef474e7287577608b0c795aa22a44d1e8b4c0b9 (patch)
tree4f143bd97f3b601f2f3f51f7bb5cc7907568d81e /pkgs/applications
parentc7c38df130aaa9c40b29f540296b863f9bb21486 (diff)
gammu: does not use python
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/gammu/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/misc/gammu/default.nix b/pkgs/applications/misc/gammu/default.nix
index 0a6796a9b077..736685f5eb1f 100644
--- a/pkgs/applications/misc/gammu/default.nix
+++ b/pkgs/applications/misc/gammu/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, python, pkg-config, cmake, bluez, libusb1, curl
+{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, bluez, libusb1, curl
, libiconv, gettext, sqlite
, dbiSupport ? false, libdbi ? null, libdbiDrivers ? null
, postgresSupport ? false, postgresql ? null
@@ -21,7 +21,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config cmake ];
- buildInputs = [ python bluez libusb1 curl gettext sqlite libiconv ]
+ strictDeps = true;
+
+ buildInputs = [ bluez libusb1 curl gettext sqlite libiconv ]
++ optionals dbiSupport [ libdbi libdbiDrivers ]
++ optionals postgresSupport [ postgresql ];