summary refs log tree commit diff
path: root/pkgs/development/libraries/hidapi
diff options
context:
space:
mode:
authorFinn Behrens <me@kloenk.de>2020-10-10 12:05:31 +0200
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-11-03 17:35:14 -0500
commitcb764dbc24d5b386045a291d7e313ed97c938a53 (patch)
tree16ab75078862a724017ca2c32a2c85b59605d9dd /pkgs/development/libraries/hidapi
parentbe6e50a3aed5fa2e8fd959de924fcefc7b7bd502 (diff)
downloadnixpkgs-cb764dbc24d5b386045a291d7e313ed97c938a53.tar
nixpkgs-cb764dbc24d5b386045a291d7e313ed97c938a53.tar.gz
nixpkgs-cb764dbc24d5b386045a291d7e313ed97c938a53.tar.bz2
nixpkgs-cb764dbc24d5b386045a291d7e313ed97c938a53.tar.lz
nixpkgs-cb764dbc24d5b386045a291d7e313ed97c938a53.tar.xz
nixpkgs-cb764dbc24d5b386045a291d7e313ed97c938a53.tar.zst
nixpkgs-cb764dbc24d5b386045a291d7e313ed97c938a53.zip
top-level: Use `systemdMinimal` in a few more places
Diffstat (limited to 'pkgs/development/libraries/hidapi')
-rw-r--r--pkgs/development/libraries/hidapi/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/hidapi/default.nix b/pkgs/development/libraries/hidapi/default.nix
index 356a0fe349d..df8212cd5a6 100644
--- a/pkgs/development/libraries/hidapi/default.nix
+++ b/pkgs/development/libraries/hidapi/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, systemd, libusb1
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, udev, libusb1
 , darwin }:
 
 stdenv.mkDerivation rec {
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
 
   buildInputs = [ ]
-    ++ stdenv.lib.optionals stdenv.isLinux [ libusb1 systemd ];
+    ++ stdenv.lib.optionals stdenv.isLinux [ libusb1 udev ];
 
   enableParallelBuilding = true;