summary refs log tree commit diff
path: root/pkgs/build-support/fetchzip/tests.nix
blob: 13175d5ce921e46adb29be350651c6ba6f27bf50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ testers, fetchzip, runCommand, ... }:

let
  url = "https://gist.github.com/glandium/01d54cefdb70561b5f6675e08f2990f2/archive/2f430f0c136a69b0886281d0c76708997d8878af.zip";
in
{
  simple = testers.invalidateFetcherByDrvHash fetchzip {
    inherit url;
    sha256 = "sha256-0ecwgL8qUavSj1+WkaxpmRBmu7cvj53V5eXQV71fddU=";
  };

  postFetch = testers.invalidateFetcherByDrvHash fetchzip {
    inherit url;
    sha256 = "sha256-7sAOzKa+9vYx5XyndHxeY2ffWAjOsgCkXC9anK6cuV0=";
    postFetch = "touch $out/filee";
  };

  hiddenDir = testers.invalidateFetcherByDrvHash fetchzip {
    url = "file://${runCommand "hiddendir.tar" {} ''
      mkdir .foo
      tar -cf $out .foo
    ''}";
    sha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
  };
}