summary refs log tree commit diff
path: root/pkgs/applications/graphics/simple-scan
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-12-10 03:42:48 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-12-10 03:42:48 +0100
commit34e1b71c622e259b03205f4b3da2c54056161363 (patch)
tree34d063187c26545e83de3ff972212b1a33c8e9dd /pkgs/applications/graphics/simple-scan
parent120f8eef67ad725aebdbf439bc90e873a106585e (diff)
downloadnixpkgs-34e1b71c622e259b03205f4b3da2c54056161363.tar
nixpkgs-34e1b71c622e259b03205f4b3da2c54056161363.tar.gz
nixpkgs-34e1b71c622e259b03205f4b3da2c54056161363.tar.bz2
nixpkgs-34e1b71c622e259b03205f4b3da2c54056161363.tar.lz
nixpkgs-34e1b71c622e259b03205f4b3da2c54056161363.tar.xz
nixpkgs-34e1b71c622e259b03205f4b3da2c54056161363.tar.zst
nixpkgs-34e1b71c622e259b03205f4b3da2c54056161363.zip
simple-scan: drop obsolete systemd dependency
Diffstat (limited to 'pkgs/applications/graphics/simple-scan')
-rw-r--r--pkgs/applications/graphics/simple-scan/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix
index 4b42e27d063..4dd30697f0b 100644
--- a/pkgs/applications/graphics/simple-scan/default.nix
+++ b/pkgs/applications/graphics/simple-scan/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb
-, libxml2, pkgconfig, saneBackends, systemd, vala, wrapGAppsHook }:
+{ stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool
+, libusb, libxml2, pkgconfig, saneBackends, vala, wrapGAppsHook }:
 
 let version = "3.19.2"; in
 stdenv.mkDerivation rec {
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [ cairo colord glib gusb gtk3 libusb libxml2 saneBackends
-    systemd vala ];
+    vala ];
   nativeBuildInputs = [ intltool itstool pkgconfig wrapGAppsHook ];
 
   configureFlags = [ "--disable-packagekit" ];