Files
2026-06-27 17:44:42 +10:00

17 lines
482 B
Nix

{ callPackage, ccextractor }:
callPackage ./common.nix { } {
pname = "tdarr-server";
component = "server";
hashes = {
linux_x64 = "sha256-iTxbPJ1XmmGInpCz4cbwnW8u5uV3DpMyXGMuKmGXOlc=";
linux_arm64 = "sha256-G3jK5pqKMKiciajaMku9S/q7upWcxmfXwZQ1tWhGaDg=";
darwin_x64 = "sha256-xnOI47sMZlTJNkTFrQCsioLQsjeOCVu1RZLgpoiRhTU=";
darwin_arm64 = "sha256-wRuTyUmRWYEMMCgScr+yTbsU1VSXypz9T8WhgyZE2TM=";
};
includeInPath = [ ccextractor ];
installIcons = true;
}