nixpkgs/pkgs/tools/misc/gammy/default.nix
Atemu 5f45e68c6b
gammy: 0.9.58 -> 0.9.58a (#98864)
* gammy: 0.9.58 -> 0.9.58a

Co-authored-by: R. RyanTM <ryantm-bot@ryantm.com>
2020-10-04 08:47:37 -05:00

30 lines
691 B
Nix

{ stdenv, fetchFromGitHub, qmake, libXxf86vm, wrapQtAppsHook }:
let
pname = "gammy";
version = "0.9.58a";
in
stdenv.mkDerivation {
inherit pname version;
src = fetchFromGitHub {
owner = "Fushko";
repo = pname;
rev = "v${version}";
sha256 = "02kwfzh7h2dbsfb6b3qlsc7zga1hq21qvg45wf22vm03mahc28za";
};
nativeBuildInputs = [ qmake wrapQtAppsHook ];
buildInputs = [ libXxf86vm ];
meta = with stdenv.lib; {
description = "GUI tool for manual- of auto-adjusting of brightness/temperature";
homepage = "https://github.com/Fushko/gammy";
license = licenses.gpl3;
maintainers = with maintainers; [ atemu ];
platforms = platforms.linux;
};
}