mirror of
https://github.com/hyprwm/aquamarine.git
synced 2024-11-16 22:05:58 +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;
|
||||
overlays = with self.overlays; [aquamarine];
|
||||
});
|
||||
pkgsCrossFor = eachSystem (system: crossSystem:
|
||||
import nixpkgs {
|
||||
localSystem = system;
|
||||
crossSystem = crossSystem;
|
||||
overlays = with self.overlays; [aquamarine];
|
||||
});
|
||||
mkDate = longDate: (lib.concatStringsSep "-" [
|
||||
(builtins.substring 0 4 longDate)
|
||||
(builtins.substring 4 2 longDate)
|
||||
|
@ -72,6 +78,7 @@
|
|||
packages = eachSystem (system: {
|
||||
default = self.packages.${system}.aquamarine;
|
||||
inherit (pkgsFor.${system}) aquamarine aquamarine-with-tests;
|
||||
aquamarine-cross = (pkgsCrossFor.${system} "aarch64-linux").aquamarine;
|
||||
});
|
||||
|
||||
formatter = eachSystem (system: pkgsFor.${system}.alejandra);
|
||||
|
|
|
@ -32,6 +32,7 @@ stdenv.mkDerivation {
|
|||
];
|
||||
|
||||
buildInputs = [
|
||||
hwdata
|
||||
hyprutils
|
||||
libdisplay-info
|
||||
libdrm
|
||||
|
@ -46,10 +47,6 @@ stdenv.mkDerivation {
|
|||
wayland-protocols
|
||||
];
|
||||
|
||||
depsBuildBuild = [
|
||||
hwdata
|
||||
];
|
||||
|
||||
outputs = ["out" "dev"];
|
||||
|
||||
cmakeBuildType = "RelWithDebInfo";
|
||||
|
|
Loading…
Reference in a new issue