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
33
pkgs/tools/system/tp-auto-kbbl/default.nix
Normal file
33
pkgs/tools/system/tp-auto-kbbl/default.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, dbus
|
||||
, pkg-config
|
||||
, openssl
|
||||
, libevdev
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "tp-auto-kbbl";
|
||||
version = "0.1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "saibotd";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0db9h15zyz2sq5r1qmq41288i54rhdl30qy08snpsh6sx2q4443y";
|
||||
};
|
||||
|
||||
cargoSha256 = "0m1gcvshbd9cfb0v6f86kbcfjxb4p9cxynmxgi4nxkhaszfyf56c";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ dbus libevdev openssl ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Auto toggle keyboard back-lighting on Thinkpads (and maybe other laptops) for Linux";
|
||||
homepage = "https://github.com/saibotd/tp-auto-kbbl";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ sebtm ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue