Skip to content
Snippets Groups Projects
Commit d2c0f238 authored by John Ericson's avatar John Ericson
Browse files

Tidy package set definitions

parent 64c1d260
No related branches found
No related tags found
No related merge requests found
......@@ -43,17 +43,13 @@ let
nixpkgsSrc = haskellNix.sources.nixpkgs-2003;
pkgs = import nixpkgsSrc haskellNix.nixpkgsArgs;
armv7l-musl-pkgs = import nixpkgsSrc (haskellNix.nixpkgsArgs // {
crossSystem = pkgs.lib.systems.platforms.armv7l-hf-multiplatform // { config = "armv7l-unknown-linux-musleabihf"; };
});
platforms = {
#i386-musl = buildCabal { pkgs = pkgs.pkgsCross.musl32; };
amd64 = buildCabal { pkgs = pkgs; };
amd64-musl = buildCabal { pkgs = pkgs.pkgsCross.musl64; };
aarch64 = buildCabal { pkgs = pkgs.pkgsCross.aarch64-multiplatform-musl; };
aarch64 = buildCabal { pkgs = pkgs.pkgsCross.aarch64-multiplatform.pkgsMusl; };
armv7l = buildCabal { pkgs = pkgs.pkgsCross.armv7l-hf-multiplatform; };
armv7l-musl = buildCabal { pkgs = armv7l-musl-pkgs; };
armv7l-musl = buildCabal { pkgs = pkgs.pkgsCross.armv7l-hf-multiplatform.pkgsMusl; };
#win64 = buildCabal { pkgs = pkgs.pkgsCross.mingwW64; };
};
in platforms
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment