about summary refs log tree commit diff
path: root/nixpkgs/pkgs/build-support/fetchdebianpatch/tests.nix
blob: 58f3b395d1fc4d745d5e328644029ab341145dcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ testers, fetchDebianPatch, ... }:

{
  simple = testers.invalidateFetcherByDrvHash fetchDebianPatch {
    pname = "pysimplesoap";
    version = "1.16.2";
    debianRevision = "5";
    patch = "Add-quotes-to-SOAPAction-header-in-SoapClient";
    hash = "sha256-xA8Wnrpr31H8wy3zHSNfezFNjUJt1HbSXn3qUMzeKc0=";
  };

  libPackage = testers.invalidateFetcherByDrvHash fetchDebianPatch {
    pname = "libfile-pid-perl";
    version = "1.01";
    debianRevision = "2";
    patch = "missing-pidfile";
    hash = "sha256-VBsIYyCnjcZLYQ2Uq2MKPK3kF2wiMKvnq0m727DoavM=";
  };
}