Merge pull request #49579 from plumelo/feature/brightnessctl-tweaks
brightnessctl: fix udev and clean unnecessary make flags
This commit is contained in:
commit
e594af80c9
|
@ -11,20 +11,18 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1n1gb8ldgqv3vs565yhk1w4jfvrviczp94r8wqlkv5q6ab43c8w9";
|
sha256 = "1n1gb8ldgqv3vs565yhk1w4jfvrviczp94r8wqlkv5q6ab43c8w9";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = [ "MODE=0755" "PREFIX=" "DESTDIR=$(out)" ];
|
makeFlags = [ "PREFIX=" "DESTDIR=$(out)" ];
|
||||||
installTargets = [ "install" "install_udev_rules" ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace 90-brightnessctl.rules --replace /bin/ ${coreutils}/bin/
|
substituteInPlace 90-brightnessctl.rules --replace /bin/ ${coreutils}/bin/
|
||||||
substituteInPlace 90-brightnessctl.rules --replace %k '*'
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/Hummer12007/brightnessctl";
|
homepage = "https://github.com/Hummer12007/brightnessctl";
|
||||||
maintainers = [ stdenv.lib.maintainers.Dje4321 ];
|
|
||||||
license = stdenv.lib.licenses.mit;
|
|
||||||
description = "This program allows you read and control device brightness";
|
description = "This program allows you read and control device brightness";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ megheaiulian ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue