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,23 @@
# To run this example from a nix repl, run:
# $ nix repl
# nix-repl> abcl-with-packages = import ./abcl-with-packages.nix
# nix-repl> :b abcl-with-packages (p: [ p.cffi ])
#
# The import returns a function, which you can call to get access to
# thousands of libraries, like, cffi. This works in ABCL by closing
# over the JNA dependency:
#
# nix-repl> awp = abcl-with-packages (p: [ p.cffi ])
# nix-repl> awp.CLASSPATH
# nix-repl> cffi = builtins.head (awp.lispLibs)
# nix-repl> cffi.javaLibs
let
pkgs = import ../../../../default.nix {};
abcl = "${pkgs.abcl}/bin/abcl --batch --load";
abcl-with-packages = pkgs.lispPackages_new.lispWithPackages abcl;
in abcl-with-packages