mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
32 lines
1,013 B
Nix
32 lines
1,013 B
Nix
{ stdenv, fetchFromGitHub, python3, libX11, libXrandr }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "blugon";
|
|
version = "1.12.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jumper149";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1i67v8jxvavgax3dwvns200iwwdcvgki04liq0x64q52lg0vrh7m";
|
|
};
|
|
|
|
buildInputs = [ python3 libX11 libXrandr ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Simple and configurable Blue Light Filter for X";
|
|
longDescription = ''
|
|
blugon is a simple and fast Blue Light Filter, that is highly configurable and provides a command line interface.
|
|
The program can be run just once or as a daemon (manually or via systemd).
|
|
There are several different backends available.
|
|
blugon calculates the screen color from your local time and configuration.
|
|
'';
|
|
license = licenses.asl20;
|
|
homepage = "https://github.com/jumper149/blugon";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ jumper149 ];
|
|
};
|
|
}
|