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:
Anton Arapov 2021-04-03 12:58:10 +02:00 committed by Alan Daniels
commit 56de2bcd43
30691 changed files with 3076956 additions and 0 deletions

View file

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'sqlint'

View file

@ -0,0 +1,17 @@
GEM
remote: https://rubygems.org/
specs:
google-protobuf (3.15.6)
pg_query (2.0.2)
google-protobuf (~> 3.15.5)
sqlint (0.2.0)
pg_query (~> 2)
PLATFORMS
ruby
DEPENDENCIES
sqlint
BUNDLED WITH
2.1.4

View file

@ -0,0 +1,18 @@
{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "sqlint";
gemdir = ./.;
exes = [ "sqlint" ];
passthru.updateScript = bundlerUpdateScript "sqlint";
meta = with lib; {
description = "Simple SQL linter";
homepage = "https://github.com/purcell/sqlint";
license = licenses.mit;
maintainers = with maintainers; [ ariutta nicknovitski purcell ];
platforms = platforms.unix;
};
}

View file

@ -0,0 +1,34 @@
{
google-protobuf = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1ak5yqqhr04b4x0axzvpw1xzwmxmfcw0gf4r1ijixv15kidhsj3z";
type = "gem";
};
version = "3.15.6";
};
pg_query = {
dependencies = ["google-protobuf"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0bvn0swyzzhl9x8hlgaz7m7s1jqmpdi2c4klarix0hiyapy2il9y";
type = "gem";
};
version = "2.0.2";
};
sqlint = {
dependencies = ["pg_query"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1ylicsc9x4vpj6ff3hmrm6iz1xswrwwgn1m7ri8nx86ij30w9hkk";
type = "gem";
};
version = "0.2.0";
};
}