Skip to content

Commit 9477867

Browse files
committed
lidarr: add aarch64-darwin support
1 parent 551247e commit 9477867

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pkgs/servers/lidarr/default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ let
2222
x86_64-linux = "x64";
2323
aarch64-linux = "arm64";
2424
x86_64-darwin = "x64";
25+
aarch64-darwin = "arm64";
2526
}
2627
."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
2728
hash =
2829
{
2930
x64-linux_hash = "sha256-PwHIUbXxk9VOKd+I7EcrTEYlikfw2NUdO6IQdiQWhWs=";
3031
arm64-linux_hash = "sha256-uu7iVexyss29Q7mZ280KeDLZWp6wwCh+TJj9XeZc/lQ=";
3132
x64-osx_hash = "sha256-POjIY2iPoYOQQci6AV/7X8t7GGbxVqROjlMzwERH/3c=";
33+
arm64-osx_hash = "sha256-JSdiyA0opa4dy5/RTSn/QvnKJ9VCWJcGhTkH5YIi5lg=";
3234
}
3335
."${arch}-${os}_hash";
3436
in
@@ -79,6 +81,7 @@ stdenv.mkDerivation rec {
7981
"x86_64-linux"
8082
"aarch64-linux"
8183
"x86_64-darwin"
84+
"aarch64-darwin"
8285
];
8386
};
8487
}

pkgs/servers/lidarr/update.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,4 @@ updateVersion $latestVersion
4040
updateHash $latestVersion x64 linux
4141
updateHash $latestVersion arm64 linux
4242
updateHash $latestVersion x64 osx
43+
updateHash $latestVersion arm64 osx

0 commit comments

Comments
 (0)