uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
31
pkgs/misc/lguf-brightness/default.nix
Normal file
31
pkgs/misc/lguf-brightness/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, libusb1, ncurses5 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lguf-brightness";
|
||||
|
||||
version = "unstable-2018-02-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "periklis";
|
||||
repo = pname;
|
||||
rev = "fcb2bc1738d55c83b6395c24edc27267a520a725";
|
||||
sha256 = "0cf7cn2kpmlvz00qxqj1m5zxmh7i2x75djbj4wqk7if7a0nlrd5m";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ libusb1 ncurses5 ];
|
||||
|
||||
installPhase = ''
|
||||
install -D lguf_brightness $out/bin/lguf_brightness
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Adjust brightness for LG UltraFine 4K display (cross platform)";
|
||||
homepage = "https://github.com/periklis/lguf-brightness";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ periklis ];
|
||||
mainProgram = "lguf_brightness";
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue