add xflux
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{stdenv, fetchurl, libXxf86vm, libXext, libX11, libXrandr}:
|
||||
stdenv.mkDerivation {
|
||||
name = "xflux";
|
||||
src = fetchurl {
|
||||
url = https://justgetflux.com/linux/xflux64.tgz;
|
||||
sha256 = "cc50158fabaeee58c331f006cc1c08fd2940a126e99d37b76c8e878ef20c2021";
|
||||
};
|
||||
|
||||
libPath = stdenv.lib.makeLibraryPath [
|
||||
stdenv.cc.gcc
|
||||
libXxf86vm
|
||||
libXext
|
||||
libX11
|
||||
libXrandr
|
||||
];
|
||||
|
||||
unpackPhase = ''
|
||||
unpackFile $src;
|
||||
'';
|
||||
installPhase = ''
|
||||
mkdir -p "$out/bin"
|
||||
cp xflux "$out/bin"
|
||||
'';
|
||||
postFixup = ''
|
||||
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --set-rpath "$libPath" "$out/bin/xflux"
|
||||
'';
|
||||
meta = {
|
||||
description = "Adjusts your screen to emit warmer light at night";
|
||||
longDescription = ''
|
||||
xflux changes the color temperature of your screen to be much warmer
|
||||
when the sun sets, and then changes it back its colder temperature
|
||||
when the sun rises.
|
||||
'';
|
||||
homepage = https://justgetflux.com/;
|
||||
license = stdenv.lib.licenses.unfree;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.paholg ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user