Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
513 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
stdenv,
boost,
gettext,
libdrm,
meson,
ninja,
openssl,
pkg-config,
python3,
tuxclocker,
}:
stdenv.mkDerivation {
inherit (tuxclocker) src version meta;
pname = "tuxclocker-plugins";
nativeBuildInputs = [
gettext
meson
ninja
pkg-config
(python3.withPackages (p: [ p.hwdata ]))
];
buildInputs = [
boost
libdrm
openssl
];
mesonFlags = [
"-Ddaemon=false"
"-Dgui=false"
"-Drequire-amd=true"
"-Drequire-python-hwdata=true"
];
}