summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-05-17 19:30:03 +0200
committerGitHub <noreply@github.com>2021-05-17 19:30:03 +0200
commit11d75bc234a86c5d6ddeada4bad67616da56d046 (patch)
tree42b1657c81841ad94ed00f4a5355e32399c34e2d /pkgs/misc
parent811b50437a3dfc59f782bb7f18499c78e78783c3 (diff)
parent5153e0e49110d18c33b3926f23102220fd839e30 (diff)
Merge pull request #123086 from mebubo/hplipWithPlugin
hplipWithPlugin: correct arch name for the plugin file on aarch64
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/drivers/hplip/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix
index 9fcdbd8c515e3..98a67a75f0bc4 100644
--- a/pkgs/misc/drivers/hplip/default.nix
+++ b/pkgs/misc/drivers/hplip/default.nix
@@ -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