mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
ce8651ba1e
xbrightness allows controlling by software the screen gamma and brigthness settings for individual color channels.
17 lines
202 B
Bash
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
|