evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sc / scanbd / package.nix
blob3f2331a0de04d2acd7ff26327daca069cc0f1d12
1 { lib, stdenv, fetchurl, pkg-config
2 , dbus, libconfuse, libjpeg, sane-backends, systemd }:
4 stdenv.mkDerivation rec {
5   pname = "scanbd";
6   version = "1.5.1";
8   src = fetchurl {
9     sha256 = "0pvy4qirfjdfm8aj6x5rkbgl7hk3jfa2s21qkk8ic5dqfjjab75n";
10     url = "mirror://sourceforge/scanbd/${pname}-${version}.tgz";
11   };
13   nativeBuildInputs = [ pkg-config ];
14   buildInputs = [ dbus libconfuse libjpeg sane-backends systemd ];
16   configureFlags = [
17     "--disable-Werror"
18     "--enable-udev"
19     "--with-scanbdconfdir=/etc/scanbd"
20     "--with-systemdsystemunitdir=$out/lib/systemd/system"
21   ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
22     # AC_FUNC_MALLOC is broken on cross builds.
23     "ac_cv_func_malloc_0_nonnull=yes"
24     "ac_cv_func_realloc_0_nonnull=yes"
25   ];
27   enableParallelBuilding = true;
29   installFlags = [
30     "scanbdconfdir=$(out)/etc/scanbd"
31     "scannerconfdir=$(scanbdconfdir)/scanner.d"
32   ];
34   doCheck = true;
36   meta = with lib; {
37     description = "Scanner button daemon";
38     longDescription = ''
39       scanbd polls a scanner's buttons, looking for button presses, function
40       knob changes, or other scanner events such as paper inserts and removals,
41       while at the same time allowing scan-applications to access the scanner.
43       Various actions can be submitted (scan, copy, email, ...) via action
44       scripts. The function knob values are passed to the action scripts as
45       well. Scan actions are also signaled via dbus. This can be useful for
46       foreign applications. Scans can also be triggered via dbus from foreign
47       applications.
49       On platforms which support signaling of dynamic device insertion/removal
50       (libudev, dbus, hal), scanbd supports this as well.
52       scanbd can use all sane-backends or some special backends from the (old)
53       scanbuttond project.
54     '';
55     homepage = "http://scanbd.sourceforge.net/";
56     downloadPage = "https://sourceforge.net/projects/scanbd/";
57     license = licenses.gpl2Plus;
58     platforms = platforms.linux;
59   };