mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-07 20:06:47 +02:00
Add armv6l-linux & armv7l-linux as cross jobs
This is a cheap way to get 32-bit ARM working. We don’t support it officially but lots of people have raspberry pis and similar hardware they want to install the Nix package manager on.
This commit is contained in:
parent
92d08c02c8
commit
15833516a4
1 changed files with 16 additions and 8 deletions
24
release.nix
24
release.nix
|
@ -2,6 +2,7 @@
|
|||
, nixpkgs ? builtins.fetchGit { url = https://github.com/NixOS/nixpkgs-channels.git; ref = "nixos-18.09"; }
|
||||
, officialRelease ? false
|
||||
, systems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
|
||||
, crossSystems ? [ "armv6l-linux" "armv7l-linux" ]
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -53,11 +54,12 @@ let
|
|||
};
|
||||
|
||||
|
||||
build = pkgs.lib.genAttrs systems (system:
|
||||
build = pkgs.lib.genAttrs (systems ++ crossSystems) (system:
|
||||
|
||||
let pkgs = import nixpkgs { inherit system; }; in
|
||||
|
||||
with pkgs;
|
||||
let pkgs = if builtins.elem system systems
|
||||
then import nixpkgs { inherit system; }
|
||||
else import nixpkgs { crossSystem = { inherit system; }; };
|
||||
in with pkgs;
|
||||
|
||||
with import ./release-common.nix { inherit pkgs; };
|
||||
|
||||
|
@ -89,9 +91,12 @@ let
|
|||
});
|
||||
|
||||
|
||||
perlBindings = pkgs.lib.genAttrs systems (system:
|
||||
perlBindings = pkgs.lib.genAttrs (systems ++ crossSystems) (system:
|
||||
|
||||
let pkgs = import nixpkgs { inherit system; }; in with pkgs;
|
||||
let pkgs = if builtins.elem system systems
|
||||
then import nixpkgs { inherit system; }
|
||||
else import nixpkgs { crossSystem = { inherit system; }; };
|
||||
in with pkgs;
|
||||
|
||||
releaseTools.nixBuild {
|
||||
name = "nix-perl";
|
||||
|
@ -112,9 +117,12 @@ let
|
|||
});
|
||||
|
||||
|
||||
binaryTarball = pkgs.lib.genAttrs systems (system:
|
||||
binaryTarball = pkgs.lib.genAttrs (systems ++ crossSystems) (system:
|
||||
|
||||
with import nixpkgs { inherit system; };
|
||||
let pkgs = if builtins.elem system systems
|
||||
then import nixpkgs { inherit system; }
|
||||
else import nixpkgs { crossSystem = { inherit system; }; };
|
||||
in with pkgs;
|
||||
|
||||
let
|
||||
toplevel = builtins.getAttr system jobs.build;
|
||||
|
|
Loading…
Reference in a new issue