evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / po / pommed_light / package.nix
blob11a5cebc76bfbeb6c1879f8657a694ba48f02054
1 { lib, stdenv
2 , fetchFromGitHub
3 , fetchpatch
4 , pciutils
5 , libconfuse
6 , alsa-lib
7 , audiofile
8 , pkg-config
9 , zlib
10 , eject
13 stdenv.mkDerivation rec {
14   pname = "pommed-light";
15   version = "1.51lw";
17   src = fetchFromGitHub {
18     owner = "bytbox";
19     repo = "pommed-light";
20     rev = "v${version}";
21     sha256 = "18fvdwwhcl6s4bpf2f2i389s71c8k4g0yb81am9rdddqmzaw27iy";
22   };
24   patches = [
25     # Pull fix pending upstream inclusion for -fno-common toolchain support:
26     #   https://github.com/bytbox/pommed-light/pull/38
27     (fetchpatch {
28       name = "fno-common.patch";
29       url = "https://github.com/bytbox/pommed-light/commit/5848b49b45a9c3ab047ebd17deb2162daab1e0b8.patch";
30       sha256 = "15rsq2i4rqp4ssab20486a1wgxi2cp87b7nxyk9h23gdwld713vf";
31     })
32   ];
34   postPatch = ''
35     substituteInPlace pommed.conf.mactel --replace /usr $out
36     substituteInPlace pommed.conf.pmac --replace /usr $out
37     substituteInPlace pommed/beep.h --replace /usr $out
38     substituteInPlace pommed/cd_eject.c --replace /usr/bin/eject ${eject}/bin/eject
39   '';
41   nativeBuildInputs = [ pkg-config ];
42   buildInputs = [
43     pciutils
44     libconfuse
45     alsa-lib
46     audiofile
47     zlib
48     eject
49   ];
51   installPhase = ''
52     install -Dm755 pommed/pommed $out/bin/pommed
53     install -Dm644 pommed.conf.mactel $out/etc/pommed.conf.mactel
54     install -Dm644 pommed.conf.pmac $out/etc/pommed.conf.pmac
56     # Man page
57     install -Dm644 pommed.1 $out/share/man/man1/pommed.1
59     # Sounds
60     install -Dm644 pommed/data/goutte.wav $out/share/pommed/goutte.wav
61     install -Dm644 pommed/data/click.wav $out/share/pommed/click.wav
62   '';
64   meta = {
65     description = "Trimmed version of the pommed hotkey handler for MacBooks";
66     mainProgram = "pommed";
67     longDescription = ''
68       This is a stripped-down version of pommed with client, dbus, and
69       ambient light sensor support removed, optimized for use with dwm
70       and the like.
71     '';
72     homepage = "https://github.com/bytbox/pommed-light";
73     platforms = [ "x86_64-linux" ];
74     license = lib.licenses.gpl2Only;
75   };