illum: init at 0.4

This commit is contained in:
Hannu Hartikainen
2017-02-04 20:22:51 +02:00
parent 9e299acf87
commit d91b39b3f9
5 changed files with 75 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
{ stdenv, fetchgit, pkgconfig, ninja, libevdev, libev }:
stdenv.mkDerivation rec {
version = "0.4";
name = "illum-${version}";
src = fetchgit {
url = "https://github.com/jmesmon/illum.git";
fetchSubmodules = true;
rev = "48ce8631346b1c88a901a8e4fa5fa7e8ffe8e418";
sha256 = "05v3hz7n6b1mlhc6zqijblh1vpl0ja1y8y0lafw7mjdz03wxhfdb";
};
buildInputs = [ pkgconfig ninja libevdev libev ];
configurePhase = ''
bash ./configure
'';
buildPhase = ''
ninja
'';
installPhase = ''
mkdir -p $out/bin
mv illum-d $out/bin
'';
meta = {
homepage = https://github.com/jmesmon/illum;
description = "Daemon that wires button presses to screen backlight level";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.dancek ];
license = stdenv.lib.licenses.agpl3;
};
}