evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sx / sxhkd / package.nix
blobea688c23e714bb93e1a4b76095b06155156384cc
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , fetchpatch
5 , asciidoc
6 , libxcb
7 , xcbutil
8 , xcbutilkeysyms
9 , xcbutilwm
12 stdenv.mkDerivation (finalAttrs: {
13   pname = "sxhkd";
14   version = "0.6.2";
16   src = fetchFromGitHub {
17     owner = "baskerville";
18     repo = "sxhkd";
19     rev = finalAttrs.version;
20     hash = "sha256-OelMqenk0tiWMLraekS/ggGf6IsXP7Sz7bv75NvnNvI=";
21   };
23   patches = [
24     (fetchpatch {
25       # Fixes an issue with overlapping chords when using multiple keyboard layouts.
26       name = "sxhkd-mod5.patch";
27       url = "https://github.com/baskerville/sxhkd/pull/307/commits/35e64f1d7b54c97ccc02e84e278012dae9bc3941.patch";
28       hash = "sha256-bvXWEEITbHC/h0nXQx99SXjvkI/KO36XXNSa1O8KSY0=";
29     })
30   ];
32   outputs = [ "out" "doc" "man" ];
34   nativeBuildInputs = [
35     asciidoc
36   ];
38   buildInputs = [
39     libxcb
40     xcbutil
41     xcbutilkeysyms
42     xcbutilwm
43   ];
45   strictDeps = true;
47   makeFlags = [ "PREFIX=$(out)" ];
49   meta = {
50     description = "Simple X hotkey daemon";
51     homepage = "https://github.com/baskerville/sxhkd";
52     license = lib.licenses.bsd2;
53     mainProgram = "sxhkd";
54     maintainers = with lib.maintainers; [ vyp AndersonTorres ncfavier ];
55     inherit (libxcb.meta) platforms;
56   };