1
0
mirror of https://github.com/samueldr/wip-pinebook-pro.git synced 2024-06-30 08:28:32 +02:00
wip-pinebook-pro/default.nix

16 lines
234 B
Nix
Raw Normal View History

2019-11-14 23:40:51 +01:00
{
pkgs' ? import <nixpkgs> {}
2019-11-14 23:40:51 +01:00
}:
let
pkgs = if builtins.currentSystem == "aarch64-linux"
then pkgs'
else pkgs'.pkgsCross.aarch64-multiplatform
;
inherit (pkgs) callPackage;
2019-11-14 23:40:51 +01:00
in
{
2019-11-14 23:45:45 +01:00
u-boot = callPackage ./u-boot {};
2019-11-14 23:40:51 +01:00
}