blob: e454f1244404eb83733cd43c9fb3f09e65819f0b (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
[
# (fetchTarball "url") cannot be tested, as that one has to fetch from the
# internet to calculate the path.
# with url and sha256
(builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/91050ea1e57e50388fa87a3302ba12d188ef723a.tar.gz";
sha256 = "1hf6cgaci1n186kkkjq106ryf8mmlq9vnwgfwh625wa8hfgdn4dm";
})
# with url and sha256 (as SRI)
(builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/91050ea1e57e50388fa87a3302ba12d188ef723a.tar.gz";
sha256 = "sha256-tRHbnoNI8SIM5O5xuxOmtSLnswEByzmnQcGGyNRjxsE=";
})
# with another url, it actually doesn't matter (no .gz prefix)
(builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/91050ea1e57e50388fa87a3302ba12d188ef723a.tar";
sha256 = "sha256-tRHbnoNI8SIM5O5xuxOmtSLnswEByzmnQcGGyNRjxsE=";
})
# also with an entirely different url, it doesn't change
(builtins.fetchTarball {
url = "https://test.example/owo";
sha256 = "sha256-tRHbnoNI8SIM5O5xuxOmtSLnswEByzmnQcGGyNRjxsE=";
})
# … because `name` defaults to source, and that (and the sha256 affect the store path)
(builtins.fetchTarball {
name = "source";
url = "https://test.example/owo";
sha256 = "sha256-tRHbnoNI8SIM5O5xuxOmtSLnswEByzmnQcGGyNRjxsE=";
})
# … so changing name causes the hash to change.
(builtins.fetchTarball {
name = "some-name";
url = "https://test.example/owo";
sha256 = "sha256-tRHbnoNI8SIM5O5xuxOmtSLnswEByzmnQcGGyNRjxsE=";
})
]
|