nixpkgs/pkgs/misc/acpilight/default.nix
tilpner 0281599ad2
tree-wide: fix malformed meta.maintainers
These packages stood out while processing packages.json.gz,
where the maintainer field of some packages wasn't a list of sets,
but a nested list, or a string.
2019-08-19 11:58:27 +02:00

34 lines
854 B
Nix

{ stdenv, fetchgit, python3, coreutils }:
stdenv.mkDerivation rec {
pname = "acpilight";
version = "1.2";
src = fetchgit {
url = "https://gitlab.com/wavexx/acpilight.git";
rev = "v${version}";
sha256 = "1r0r3nx6x6vkpal6vci0zaa1n9dfacypldf6k8fxg7919vzxdn1w";
};
pyenv = python3.withPackages (pythonPackages: with pythonPackages; [
ConfigArgParse
]);
postConfigure = ''
substituteInPlace 90-backlight.rules --replace /bin ${coreutils}/bin
substituteInPlace Makefile --replace udevadm true
'';
buildInputs = [ pyenv ];
makeFlags = [ "DESTDIR=$(out) prefix=" ];
meta = with stdenv.lib; {
homepage = "https://gitlab.com/wavexx/acpilight";
description = "ACPI backlight control";
license = licenses.gpl3;
maintainers = with maintainers; [ smakarov ];
platforms = platforms.linux;
};
}