fix jackett build (by disabling the check phase. manually verified: still works)

This commit is contained in:
colin 2022-07-29 20:08:35 -07:00
parent d69db1df37
commit 641b32b8d0
2 changed files with 14 additions and 1 deletions

View File

@ -9,11 +9,22 @@ fetchpatch: [
./02-rpi4-uboot.patch
# alternative to https://github.com/NixOS/nixpkgs/pull/173200
./04-dart-2.7.0.patch
# whalebird: suuport aarch64
# whalebird: support aarch64
(fetchpatch {
url = "https://github.com/NixOS/nixpkgs/pull/176476.diff";
sha256 = "sha256-126DljM06hqPZ3fjLZ3LBZR64nFbeTfzSazEu72d4y8=";
})
# jackett updates
# (fetchpatch {
# url = "https://github.com/NixOS/nixpkgs/pull/169395.diff";
# sha256 = "sha256-JZh/5I22ZALnzaWQXAbvOJ1ZVjuRpPNY5WWFJDalzXk=";
# })
# (fetchpatch {
# url = "https://github.com/NixOS/nixpkgs/pull/182847.diff";
# sha256 = "sha256-EojqEVNBIyM4DJYLMiY+UKey8RV4tuIv0uyTMEhKiRo=";
# })
# TODO: upstream
./07-duplicity-rich-url.patch
# TODO: upstream

View File

@ -1,6 +1,8 @@
{ pkgs }:
(pkgs.jackett.overrideAttrs (upstream: {
# 2022-07-29: check phase segfaults on arm (with or without my patches)
doCheck = false;
patches = (upstream.patches or []) ++ [
# bind to an IP address which is usable behind a netns
./01-fix-bind-host.patch