mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
35 lines
765 B
Nix
35 lines
765 B
Nix
{ stdenv, fetchurl, xorg }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "xbrightness-0.3-mika-akk";
|
|
src = fetchurl {
|
|
url = http://shallowsky.com/software/xbrightness/xbrightness-0.3-mika-akk.tar.gz;
|
|
sha256 = "2564dbd393544657cdabe4cbf535d9cfb9abe8edddb1b8cdb1ed4d12f358626e";
|
|
};
|
|
|
|
buildInputs = [
|
|
xorg.imake
|
|
xorg.libX11
|
|
xorg.libXaw
|
|
xorg.libXext
|
|
xorg.libXmu
|
|
xorg.libXpm
|
|
xorg.libXxf86vm
|
|
];
|
|
|
|
configurePhase = "xmkmf";
|
|
|
|
installPhase = ''
|
|
make install BINDIR=$out/bin
|
|
make install.man MANPATH=$out/share/man
|
|
'';
|
|
|
|
meta = {
|
|
description = "X11 brigthness and gamma software control";
|
|
homepage = http://shallowsky.com/software;
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|