wl-gammarelay-rs: init at 0.3.2
This commit is contained in:
parent
d7c364c880
commit
3ba69a0eed
1 changed files with 27 additions and 0 deletions
27
pkgs/by-name/wl/wl-gammarelay-rs/package.nix
Normal file
27
pkgs/by-name/wl/wl-gammarelay-rs/package.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
fetchFromGitHub,
|
||||||
|
rustPlatform,
|
||||||
|
}:
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "wl-gammarelay-rs";
|
||||||
|
version = "0.3.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "MaxVerevkin";
|
||||||
|
repo = "wl-gammarelay-rs";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-md6e9nRCs6TZarwFD3/GQEoJSIhtdq++rIZTP7Vl0wQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-TDP5RC7B7/ldpK22WsmXd6fSl2rHtvG0hP9NYzoEVYo=";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A 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.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue