mirror of
https://github.com/NotAShelf/air-quality-monitor.git
synced 2024-11-22 13:20:48 +00:00
allow x86-64 for testing
This commit is contained in:
parent
eb828c2f17
commit
69eeadfa05
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
}: let
|
}: let
|
||||||
systems = ["aarch64-linux"];
|
systems = ["aarch64-linux" "x86_64-linux"];
|
||||||
forEachSystem = nixpkgs.lib.genAttrs systems;
|
forEachSystem = nixpkgs.lib.genAttrs systems;
|
||||||
pkgsForEach = nixpkgs.legacyPackages;
|
pkgsForEach = nixpkgs.legacyPackages;
|
||||||
in rec {
|
in rec {
|
||||||
|
|
|
@ -56,7 +56,7 @@ in
|
||||||
description = "An air quality monitoring service with a Raspberry Pi and a SDS011 sensor. ";
|
description = "An air quality monitoring service with a Raspberry Pi and a SDS011 sensor. ";
|
||||||
homepage = "https://github.com/rydercalmdown/pi_air_quality_monitor";
|
homepage = "https://github.com/rydercalmdown/pi_air_quality_monitor";
|
||||||
mainProgram = pname;
|
mainProgram = pname;
|
||||||
platforms = with lib.platforms; ["aarch64-linux"];
|
platforms = ["aarch64-linux" "x86_64-linux"];
|
||||||
maintainers = with lib.maintainers; [NotAShelf];
|
maintainers = with lib.maintainers; [NotAShelf];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue