Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
20 lines
580 B
Nix
20 lines
580 B
Nix
{ testers, fetchDebianPatch, ... }:
|
|
|
|
{
|
|
simple = testers.invalidateFetcherByDrvHash fetchDebianPatch {
|
|
pname = "pysimplesoap";
|
|
version = "1.16.2";
|
|
debianRevision = "5";
|
|
patch = "Add-quotes-to-SOAPAction-header-in-SoapClient.patch";
|
|
hash = "sha256-xA8Wnrpr31H8wy3zHSNfezFNjUJt1HbSXn3qUMzeKc0=";
|
|
};
|
|
|
|
libPackage = testers.invalidateFetcherByDrvHash fetchDebianPatch {
|
|
pname = "libfile-pid-perl";
|
|
version = "1.01";
|
|
debianRevision = "2";
|
|
patch = "missing-pidfile.patch";
|
|
hash = "sha256-VBsIYyCnjcZLYQ2Uq2MKPK3kF2wiMKvnq0m727DoavM=";
|
|
};
|
|
}
|