Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
899 B
Nix
45 lines
899 B
Nix
{
|
|
lib,
|
|
mkDerivation,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
qtbase,
|
|
qttools,
|
|
ddcutil,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "ddcui";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rockowitz";
|
|
repo = "ddcui";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KcivAoPV/4TihVkwYgq3bWWhG5E8enVSD3bhObl++I0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
# Using cmake instead of the also-supported qmake because ddcui's qmake
|
|
# file is not currently written to support PREFIX installations.
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qttools
|
|
ddcutil
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Graphical user interface for ddcutil - control monitor settings";
|
|
mainProgram = "ddcui";
|
|
homepage = "https://www.ddcutil.com/ddcui_main/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ nh2 ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|