about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Djubek <envy1988@gmail.com>2019-05-31 22:14:35 +0000
committerRobert Djubek <envy1988@gmail.com>2019-06-01 04:28:00 +0000
commite69d8844b676997b3b458904e4a892b6696d3efc (patch)
treec1d98fd698ecccadf0fc3a059a80790fe39ca7d1
parent285dddba9fdadfc47525182ee937a020c14299c7 (diff)
downloadnixlib-e69d8844b676997b3b458904e4a892b6696d3efc.tar
nixlib-e69d8844b676997b3b458904e4a892b6696d3efc.tar.gz
nixlib-e69d8844b676997b3b458904e4a892b6696d3efc.tar.bz2
nixlib-e69d8844b676997b3b458904e4a892b6696d3efc.tar.lz
nixlib-e69d8844b676997b3b458904e4a892b6696d3efc.tar.xz
nixlib-e69d8844b676997b3b458904e4a892b6696d3efc.tar.zst
nixlib-e69d8844b676997b3b458904e4a892b6696d3efc.zip
hplip-3.16.11: add aarch64-linux to platforms
-rw-r--r--pkgs/misc/drivers/hplip/3.16.11.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/misc/drivers/hplip/3.16.11.nix b/pkgs/misc/drivers/hplip/3.16.11.nix
index e99fe1a201d2..8f5004693eac 100644
--- a/pkgs/misc/drivers/hplip/3.16.11.nix
+++ b/pkgs/misc/drivers/hplip/3.16.11.nix
@@ -28,16 +28,17 @@ let
   };
 
   hplipPlatforms = {
-    "i686-linux"   = "x86_32";
-    "x86_64-linux" = "x86_64";
-    "armv6l-linux" = "arm32";
-    "armv7l-linux" = "arm32";
+    "i686-linux"    = "x86_32";
+    "x86_64-linux"  = "x86_64";
+    "armv6l-linux"  = "arm32";
+    "armv7l-linux"  = "arm32";
+    "aarch64-linux" = "arm64";
   };
 
   hplipArch = hplipPlatforms."${stdenv.hostPlatform.system}"
     or (throw "HPLIP not supported on ${stdenv.hostPlatform.system}");
 
-  pluginArches = [ "x86_32" "x86_64" "arm32" ];
+  pluginArches = [ "x86_32" "x86_64" "arm32" "arm64" ];
 
 in
 
@@ -186,7 +187,7 @@ pythonPackages.buildPythonApplication {
     license = if withPlugin
       then licenses.unfree
       else with licenses; [ mit bsd2 gpl2Plus ];
-    platforms = [ "i686-linux" "x86_64-linux" "armv6l-linux" "armv7l-linux" ];
+    platforms = [ "i686-linux" "x86_64-linux" "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
     maintainers = with maintainers; [ ttuegel ];
   };
 }