rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / applications / window-managers / yabar / unstable.nix
blob47c8f6c5e5685ec5602b3e84d4282e3f23be1c45
1 { fetchpatch, playerctl, libxkbcommon, callPackage, attrs ? {} }:
3 let
4   pkg = callPackage ./build.nix ({
5     version = "unstable-2018-01-18";
7     rev    = "c516e8e78d39dd2b339acadc4c175347171150bb";
8     sha256 = "1p9lx78cayyn7qc2q66id2xfs76jyddnqv2x1ypsvixaxwcvqgdb";
9   } // attrs);
10 in pkg.overrideAttrs (o: {
11   buildInputs = o.buildInputs ++ [
12     playerctl libxkbcommon
13   ];
15   makeFlags = o.makeFlags ++ [
16     "PLAYERCTL=1"
17   ];
19   patches = (o.patches or []) ++ [
20     (fetchpatch {
21       url = "https://github.com/geommer/yabar/commit/008dc1420ff684cf12ce2ef3ac9d642e054e39f5.patch";
22       sha256 = "1q7nd66ai6nr2m6iqxn55gvbr4r5gjc00c8wyjc3riv31qcbqbhv";
23     })
24   ];