zpaqd: Modernize derivation

- Simplified platform-specific options
 - Almost ready for cross-compilation
This commit is contained in:
John Ericson
2017-05-22 17:09:06 -04:00
parent c443033be3
commit fedcda6cda
2 changed files with 13 additions and 12 deletions

View File

@@ -7,6 +7,7 @@ rec {
"64bit" = { cpu = { bits = 64; }; };
i686 = { cpu = cpuTypes.i686; };
x86_64 = { cpu = cpuTypes.x86_64; };
x86 = { cpu = { family = "x86"; }; };
Arm = { cpu = { family = "arm"; }; };
Mips = { cpu = { family = "mips"; }; };
BigEndian = { cpu = { significantByte = significantBytes.bigEndian; }; };