mirror of
https://github.com/hyprwm/aquamarine.git
synced 2024-11-17 03:46:00 +01:00
Nix: fix cross-compilation
This commit is contained in:
parent
f95d150937
commit
864f527058
2 changed files with 8 additions and 4 deletions
|
@ -31,6 +31,12 @@
|
||||||
localSystem.system = system;
|
localSystem.system = system;
|
||||||
overlays = with self.overlays; [aquamarine];
|
overlays = with self.overlays; [aquamarine];
|
||||||
});
|
});
|
||||||
|
pkgsCrossFor = eachSystem (system: crossSystem:
|
||||||
|
import nixpkgs {
|
||||||
|
localSystem = system;
|
||||||
|
crossSystem = crossSystem;
|
||||||
|
overlays = with self.overlays; [aquamarine];
|
||||||
|
});
|
||||||
mkDate = longDate: (lib.concatStringsSep "-" [
|
mkDate = longDate: (lib.concatStringsSep "-" [
|
||||||
(builtins.substring 0 4 longDate)
|
(builtins.substring 0 4 longDate)
|
||||||
(builtins.substring 4 2 longDate)
|
(builtins.substring 4 2 longDate)
|
||||||
|
@ -72,6 +78,7 @@
|
||||||
packages = eachSystem (system: {
|
packages = eachSystem (system: {
|
||||||
default = self.packages.${system}.aquamarine;
|
default = self.packages.${system}.aquamarine;
|
||||||
inherit (pkgsFor.${system}) aquamarine aquamarine-with-tests;
|
inherit (pkgsFor.${system}) aquamarine aquamarine-with-tests;
|
||||||
|
aquamarine-cross = (pkgsCrossFor.${system} "aarch64-linux").aquamarine;
|
||||||
});
|
});
|
||||||
|
|
||||||
formatter = eachSystem (system: pkgsFor.${system}.alejandra);
|
formatter = eachSystem (system: pkgsFor.${system}.alejandra);
|
||||||
|
|
|
@ -32,6 +32,7 @@ stdenv.mkDerivation {
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
hwdata
|
||||||
hyprutils
|
hyprutils
|
||||||
libdisplay-info
|
libdisplay-info
|
||||||
libdrm
|
libdrm
|
||||||
|
@ -46,10 +47,6 @@ stdenv.mkDerivation {
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
];
|
];
|
||||||
|
|
||||||
depsBuildBuild = [
|
|
||||||
hwdata
|
|
||||||
];
|
|
||||||
|
|
||||||
outputs = ["out" "dev"];
|
outputs = ["out" "dev"];
|
||||||
|
|
||||||
cmakeBuildType = "RelWithDebInfo";
|
cmakeBuildType = "RelWithDebInfo";
|
||||||
|
|
Loading…
Reference in a new issue