forked from mirrors/nixpkgs
Merge pull request #116651 from jumper149/master
blucontrol-wrapper: init
This commit is contained in:
commit
21264a9367
32
pkgs/applications/misc/blucontrol/wrapper.nix
Normal file
32
pkgs/applications/misc/blucontrol/wrapper.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ stdenv, lib, makeWrapper, ghcWithPackages, packages ? (_:[]) }:
|
||||||
|
let
|
||||||
|
blucontrolEnv = ghcWithPackages (self: [ self.blucontrol ] ++ packages self);
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "blucontrol-with-packages";
|
||||||
|
version = blucontrolEnv.version;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
buildCommand = ''
|
||||||
|
makeWrapper ${blucontrolEnv}/bin/blucontrol $out/bin/blucontrol \
|
||||||
|
--prefix PATH : ${lib.makeBinPath [ blucontrolEnv ]}
|
||||||
|
'';
|
||||||
|
|
||||||
|
# trivial derivation
|
||||||
|
preferLocalBuild = true;
|
||||||
|
allowSubstitues = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Configurable blue light filter";
|
||||||
|
longDescription = ''
|
||||||
|
This application is a blue light filter, with the main focus on configurability.
|
||||||
|
Configuration is done in Haskell in the style of xmonad.
|
||||||
|
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.
|
||||||
|
'';
|
||||||
|
license = licenses.bsd3;
|
||||||
|
homepage = "https://github.com/jumper149/blucontrol";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ jumper149 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -21993,6 +21993,10 @@ in
|
||||||
|
|
||||||
blogc = callPackage ../applications/misc/blogc { };
|
blogc = callPackage ../applications/misc/blogc { };
|
||||||
|
|
||||||
|
blucontrol = callPackage ../applications/misc/blucontrol/wrapper.nix {
|
||||||
|
inherit (haskellPackages) ghcWithPackages;
|
||||||
|
};
|
||||||
|
|
||||||
bluefish = callPackage ../applications/editors/bluefish {
|
bluefish = callPackage ../applications/editors/bluefish {
|
||||||
gtk = gtk3;
|
gtk = gtk3;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue