2021-12-14 15:06:13 +00:00
|
|
|
{ lib
|
2022-01-15 03:28:51 +00:00
|
|
|
, stdenv
|
2021-12-14 15:06:13 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, makeWrapper
|
|
|
|
, rustPlatform
|
|
|
|
, vulkan-loader
|
2022-01-15 03:28:51 +00:00
|
|
|
, pkg-config
|
|
|
|
, udev
|
|
|
|
, v4l-utils
|
|
|
|
, llvmPackages
|
2021-12-14 15:06:13 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wluma";
|
2022-07-08 14:44:08 +00:00
|
|
|
version = "4.1.2";
|
2021-12-14 15:06:13 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "maximbaz";
|
|
|
|
repo = "wluma";
|
|
|
|
rev = version;
|
2022-01-22 00:39:14 +00:00
|
|
|
sha256 = "sha256-kUYh4RmD4zRI3ZNZWl2oWcO0Ze5czLBXUgPMl/cLW/I=";
|
2021-12-14 15:06:13 +00:00
|
|
|
};
|
|
|
|
|
2023-03-25 23:16:46 +00:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
|
|
|
"toml-0.5.8" = "sha256-aOq5ERYXP329k1d6z8AS987KlFRRcPZhMHOzxnSRXZg=";
|
|
|
|
};
|
|
|
|
};
|
2022-07-08 14:44:08 +00:00
|
|
|
|
2022-01-15 03:28:51 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
pkg-config
|
2022-02-13 12:00:00 +00:00
|
|
|
rustPlatform.bindgenHook
|
2022-01-15 03:28:51 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
udev
|
2022-02-13 12:00:00 +00:00
|
|
|
v4l-utils
|
2022-01-15 03:28:51 +00:00
|
|
|
];
|
|
|
|
|
2021-12-14 15:06:13 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/wluma \
|
|
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ vulkan-loader ]}"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Automatic brightness adjustment based on screen contents and ALS";
|
|
|
|
homepage = "https://github.com/maximbaz/wluma";
|
|
|
|
license = licenses.isc;
|
2022-02-01 20:50:15 +00:00
|
|
|
maintainers = with maintainers; [ yshym jmc-figueira ];
|
2021-12-14 15:06:13 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|