nixpkgs/pkgs/tools/misc/xflux/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{lib, stdenv, fetchurl, libXxf86vm, libXext, libX11, libXrandr, gcc}:
2015-01-28 07:30:23 +00:00
stdenv.mkDerivation {
2015-06-04 17:22:36 +00:00
name = "xflux-2013-09-01";
2015-01-28 07:30:23 +00:00
src = fetchurl {
url = "https://justgetflux.com/linux/xflux64.tgz";
2015-01-28 07:30:23 +00:00
sha256 = "cc50158fabaeee58c331f006cc1c08fd2940a126e99d37b76c8e878ef20c2021";
};
2021-01-15 09:19:50 +00:00
libPath = lib.makeLibraryPath [
gcc.cc
2015-01-28 07:30:23 +00:00
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/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.unfree;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.paholg ];
2015-01-28 07:30:23 +00:00
};
}