mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
12 lines
320 B
Nix
12 lines
320 B
Nix
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
|
|
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
|
|
|
|
with import <nixpkgs> { };
|
|
|
|
let
|
|
src = import ./src;
|
|
in
|
|
|
|
lib.genAttrs
|
|
[ "aarch64" "i686" ]
|
|
(arch: (src { inherit arch; }) // { recurseForDerivations = true; })
|