bd40601acb
The unstable branch of `yabar` received some minor useful changes: - Fixed missprint (f1b1eff481
) - Update information on Debian installation (ce20fe75f7
) - Add indicator to show current indicator using `libxkbcommon` (5aa1fb5eb5
) The last change requires a `libxkbcommon` as additional build input. Furthermore I thought that it might be better to add the dependencies of unstable (namely `playerctl` and `libxkbcommon`) to the `unstable.nix` to reduce the closure size of the stable build.
19 lines
425 B
Nix
19 lines
425 B
Nix
{ playerctl, libxkbcommon, callPackage, attrs ? {} }:
|
|
|
|
let
|
|
pkg = callPackage ./build.nix ({
|
|
version = "unstable-2018-01-02";
|
|
|
|
rev = "d9f75933f1fdd7bec24bf7db104c7e1df2728b98";
|
|
sha256 = "0ry2pgqsnl6cmvkhakm73cjqdnirkimldnmbngl6hbvggx32z8c9";
|
|
} // attrs);
|
|
in pkg.overrideAttrs (o: {
|
|
buildInputs = o.buildInputs ++ [
|
|
playerctl libxkbcommon
|
|
];
|
|
|
|
makeFlags = o.makeFlags ++ [
|
|
"PLAYERCTL=1"
|
|
];
|
|
})
|