Merge pull request #123086 from mebubo/hplipWithPlugin

hplipWithPlugin: correct arch name for the plugin file on aarch64
This commit is contained in:
Sandro 2021-05-17 19:30:03 +02:00 committed by GitHub
commit 11d75bc234
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,13 +36,13 @@ let
x86_64-linux = "x86_64";
armv6l-linux = "arm32";
armv7l-linux = "arm32";
aarch64-linux = "aarch64";
aarch64-linux = "arm64";
};
hplipArch = hplipPlatforms.${stdenv.hostPlatform.system}
or (throw "HPLIP not supported on ${stdenv.hostPlatform.system}");
pluginArches = [ "x86_32" "x86_64" "arm32" "aarch64" ];
pluginArches = [ "x86_32" "x86_64" "arm32" "arm64" ];
in