781ed961eb
Default v8 was fixed at 3.30.33, so running nix-build nixpkgs -A v8 would give us version 3.30.33, whereas nix-env -i v8 would install version 4.5.107. Now, both commands build 4.5.107, and there is still an option to install version 3.30.33
7 lines
163 B
Nix
7 lines
163 B
Nix
{ callPackage, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
version = "3.30.33.16";
|
|
sha256 = "1azf1b36gqj4z5x0k9wq2dkp99zfyhwb0d6i2cl5fjm3k6js7l45";
|
|
})
|