2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchgit, libX11, libXScrnSaver, libXext, glib, dbus, pkg-config, systemd }:
|
2014-11-11 17:18:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-06-04 18:22:36 +01:00
|
|
|
name = "lightum-2014-06-07";
|
2014-11-11 17:18:20 +00:00
|
|
|
src = fetchgit {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://github.com/poliva/lightum";
|
2014-11-11 17:18:20 +00:00
|
|
|
rev = "123e6babe0669b23d4c1dfa5511088608ff2baa8";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "01x24rcrkgksyvqpgkr9zafg3jgs8nqng8yf0hx0kbmcimar8dbp";
|
2014-11-11 17:18:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
dbus
|
|
|
|
glib
|
|
|
|
libX11
|
|
|
|
libXScrnSaver
|
|
|
|
libXext
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2014-11-11 17:18:20 +00:00
|
|
|
systemd
|
|
|
|
];
|
|
|
|
|
2016-07-16 14:57:23 +01:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "libsystemd-login" "libsystemd"
|
|
|
|
'';
|
|
|
|
|
2014-11-11 17:18:20 +00:00
|
|
|
installPhase = ''
|
|
|
|
make install prefix=$out bindir=$out/bin docdir=$out/share/doc \
|
|
|
|
mandir=$out/share/man INSTALL="install -c" INSTALLDATA="install -c -m 644"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "MacBook automatic light sensor daemon";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/poliva/lightum";
|
2021-01-15 14:45:37 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [ puffnfresh ];
|
|
|
|
platforms = lib.platforms.linux;
|
2014-11-11 17:18:20 +00:00
|
|
|
};
|
|
|
|
}
|