1
0
mirror of https://github.com/samueldr/wip-pinebook-pro.git synced 2024-07-02 09:28:34 +02:00
wip-pinebook-pro/default.nix

16 lines
238 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
{
u-boot = callPackage ./u-boot.nix {};
}