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,24 @@
# To run this example from a nix repl, run:
# $ nix repl
# nix-repl> abcl-packages = import ./abcl-package-set.nix
# nix-repl> builtins.attrNames abcl-packages
# nix-repl> builtins.length (builtins.attrNames abcl-packages)
#
# The import returns a package set, which you can use for example to
# discover what packages are available in lispWithPackages:
#
# nix-repl> abcl-packages.cl-op<TAB>
# nix-repl> abcl-packages.cl-opengl
# nix-repl> # cool, we can use cl-opengl
# nix-repl> # some-abcl-with-packages (p: [ p.cl-opengl ])
let
pkgs = import ../../../../default.nix {};
abcl = "${pkgs.abcl}/bin/abcl --batch --load";
abcl-packages = pkgs.lispPackages_new.lispPackagesFor abcl;
in abcl-packages