0b5a36f207
The following changes landed in master: - Reset colors unconditionally (2f1ee69d4c75e210265dca732ff6c2ddd7f440f2) - Document NixOS support (993f1b5a7bc2a41a353a104cff0763860c053c92) - ya_int_song: improve configuration of playerctl properties (1f776cd5f1f4e89e6ebca3ca09feb7e09f79e79e)
19 lines
425 B
Nix
19 lines
425 B
Nix
{ 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"
|
|
];
|
|
})
|