nixpkgs/pkgs/tools/X11/xbrightness/builder.sh
Renzo Carbonara ce8651ba1e Add package xbrightness
xbrightness allows controlling by software the screen gamma and
brigthness settings for individual color channels.
2015-01-16 03:03:41 -03:00

17 lines
202 B
Bash

source $stdenv/setup
configurePhase() {
xmkmf
}
buildPhase() {
make $makeFlags
}
installPhase() {
make install BINDIR=$out/bin
make install.man MANPATH=$out/share/man
}
genericBuild