Skip to content

Commit

Permalink
Merge pull request #73476 from jumper149/master
Browse files Browse the repository at this point in the history
blugon: init at 1.11.4
  • Loading branch information
ryantm committed Nov 17, 2019
2 parents 6160a5f + 08d2820 commit 30fa836
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Expand Up @@ -3402,6 +3402,12 @@
github = "juliendehos";
name = "Julien Dehos";
};
jumper149 = {
email = "felixspringer149@gmail.com";
github = "jumper149";
githubId = 39434424;
name = "Felix Springer";
};
justinwoo = {
email = "moomoowoo@gmail.com";
github = "justinwoo";
Expand Down
31 changes: 31 additions & 0 deletions pkgs/applications/misc/blugon/default.nix
@@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, python3, libX11, libXrandr }:

stdenv.mkDerivation rec {
pname = "blugon";
version = "1.11.4";

src = fetchFromGitHub {
owner = "jumper149";
repo = pname;
rev = version;
sha256 = "0x320w2h5nlcgha4345i8ns15akb4kmrdgkh710s4r1n1by4x11r";
};

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -18009,6 +18009,8 @@ in
libXi libXext libXfixes libXcomposite;
};

blugon = callPackage ../applications/misc/blugon { };

bombono = callPackage ../applications/video/bombono {};

bomi = libsForQt5.callPackage ../applications/video/bomi {
Expand Down

0 comments on commit 30fa836

Please sign in to comment.