biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / blucontrol / wrapper.nix
blob3ace71b7644a644ad267ec45dc50264ba033a3b4
1 { stdenv, lib, makeWrapper, ghcWithPackages, packages ? (_:[]) }:
2 let
3   blucontrolEnv = ghcWithPackages (self: [ self.blucontrol ] ++ packages self);
4 in
5   stdenv.mkDerivation {
6     pname = "blucontrol-with-packages";
7     version = blucontrolEnv.version;
9     nativeBuildInputs = [ makeWrapper ];
11     buildCommand = ''
12       makeWrapper ${blucontrolEnv}/bin/blucontrol $out/bin/blucontrol \
13         --prefix PATH : ${lib.makeBinPath [ blucontrolEnv ]}
14     '';
16     # trivial derivation
17     preferLocalBuild = true;
18     allowSubstitues = false;
20     meta = with lib; {
21       description = "Configurable blue light filter";
22       mainProgram = "blucontrol";
23       longDescription = ''
24         This application is a blue light filter, with the main focus on configurability.
25         Configuration is done in Haskell in the style of xmonad.
26         Blucontrol makes use of monad transformers and allows monadic calculation of gamma values and recoloring. The user chooses, what will be captured in the monadic state.
27       '';
28       license = licenses.bsd3;
29       homepage = "https://github.com/jumper149/blucontrol";
30       platforms = platforms.unix;
31       maintainers = with maintainers; [ jumper149 ];
32     };
33   }