1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2024-12-14 11:57:52 +00:00

no longer advertise support for platforms we don't test

32-bit is on life-support anyway
This commit is contained in:
Jörg Thalheim 2022-05-25 09:11:41 +02:00
parent 5d69dafb8d
commit 5837d09f11
No known key found for this signature in database

View file

@ -13,12 +13,9 @@
}: let
systems = [
"x86_64-linux"
"i686-linux"
"x86_64-darwin"
"aarch64-darwin"
"aarch64-linux"
"armv6l-linux"
"armv7l-linux"
];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
suffix-version = version: attrs: nixpkgs.lib.mapAttrs' (name: value: nixpkgs.lib.nameValuePair (name + version) value) attrs;