forked from input-output-hk/cardano-sl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fetchNixpkgs.nix
41 lines (33 loc) · 1.2 KB
/
fetchNixpkgs.nix
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
{ rev # The Git revision of nixpkgs to fetch
, sha256 # The SHA256 of the downloaded data
, sha256unpacked
, system ? builtins.currentSystem # This is overridable if necessary
}:
if 0 <= builtins.compareVersions builtins.nixVersion "1.12"
then
builtins.fetchTarball {
url = "https://github.com/input-output-hk/nixpkgs/archive/${rev}.tar.gz";
sha256 = sha256unpacked;
}
else
(rec {
tarball = import <nix/fetchurl.nix> {
url = "https://github.com/input-output-hk/nixpkgs/archive/${rev}.tar.gz";
inherit sha256;
};
builtin-paths = import <nix/config.nix>;
script = builtins.toFile "nixpkgs-unpacker" ''
"$coreutils/mkdir" "$out"
cd "$out"
"$gzip" --decompress < "$tarball" | "$tar" -x --strip-components=1
'';
nixpkgs = builtins.derivation {
name = "nixpkgs-${builtins.substring 0 6 rev}";
builder = builtins.storePath builtin-paths.shell;
args = [ script ];
inherit tarball system;
tar = builtins.storePath builtin-paths.tar;
gzip = builtins.storePath builtin-paths.gzip;
coreutils = builtins.storePath builtin-paths.coreutils;
};
}).nixpkgs