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
24
pkgs/tools/inputmethods/interception-tools/default.nix
Normal file
24
pkgs/tools/inputmethods/interception-tools/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ lib, stdenv, fetchFromGitLab, pkg-config, cmake, libyamlcpp,
|
||||
libevdev, udev, boost }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "interception-tools";
|
||||
version = "0.6.8";
|
||||
src = fetchFromGitLab {
|
||||
owner = "interception/linux";
|
||||
repo = "tools";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-jhdgfCWbkF+jD/iXsJ+fYKOtPymxcC46Q4w0aqpvcek=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
buildInputs = [ libevdev udev libyamlcpp boost ];
|
||||
|
||||
meta = {
|
||||
description = "A minimal composable infrastructure on top of libudev and libevdev";
|
||||
homepage = "https://gitlab.com/interception/linux/tools";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = [ lib.maintainers.vyp ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue