summary refs log tree commit diff
path: root/pkgs/applications/window-managers/yabar/unstable.nix
blob: 77abc0c7ed4bda0b427e38a6669bf5d1399ccbd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ playerctl, libxkbcommon, callPackage, attrs ? {} }:

let
  pkg = callPackage ./build.nix ({
    version = "unstable-2018-01-18";

    rev    = "c516e8e78d39dd2b339acadc4c175347171150bb";
    sha256 = "1p9lx78cayyn7qc2q66id2xfs76jyddnqv2x1ypsvixaxwcvqgdb";
  } // attrs);
in pkg.overrideAttrs (o: {
  buildInputs = o.buildInputs ++ [
    playerctl libxkbcommon
  ];

  makeFlags = o.makeFlags ++ [
    "PLAYERCTL=1"
  ];
})