mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
35 lines
1002 B
Nix
35 lines
1002 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wl-gammarelay-rs";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MaxVerevkin";
|
|
repo = "wl-gammarelay-rs";
|
|
rev = "v${version}";
|
|
hash = "sha256-zmtC4xNNAK/TiB5TU6qsY5y0Z3roaEnTwHMZPjq6SbE=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"rustbus-0.19.3" = "sha256-Eq3qCsjiNKe3Vdpx7a3J1icPGQmKfCyz1wcgCyztH64=";
|
|
"rustbus-service-0.1.0" = "sha256-9yuIPqOecTqP0zsFqSue4hL7ZEF9MQpTF1gCJpKV6nk=";
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple program that provides DBus interface to control display temperature and brightness under wayland without flickering";
|
|
homepage = "https://github.com/MaxVerevkin/wl-gammarelay-rs";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "wl-gammarelay-rs";
|
|
maintainers = with lib.maintainers; [ quantenzitrone ];
|
|
platforms = lib.platforms.unix;
|
|
badPlatforms = lib.platforms.darwin;
|
|
};
|
|
}
|