mirror of
https://github.com/NotAShelf/air-quality-monitor.git
synced 2024-11-22 21:31:11 +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,
|
||||
nixpkgs,
|
||||
}: let
|
||||
systems = ["aarch64-linux"];
|
||||
systems = ["aarch64-linux" "x86_64-linux"];
|
||||
forEachSystem = nixpkgs.lib.genAttrs systems;
|
||||
pkgsForEach = nixpkgs.legacyPackages;
|
||||
in rec {
|
||||
|
|
|
@ -56,7 +56,7 @@ in
|
|||
description = "An air quality monitoring service with a Raspberry Pi and a SDS011 sensor. ";
|
||||
homepage = "https://github.com/rydercalmdown/pi_air_quality_monitor";
|
||||
mainProgram = pname;
|
||||
platforms = with lib.platforms; ["aarch64-linux"];
|
||||
platforms = ["aarch64-linux" "x86_64-linux"];
|
||||
maintainers = with lib.maintainers; [NotAShelf];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue