nixpkgs/pkgs/development/libraries/v8/3.30.33.nix
Proglodyte 781ed961eb v8: use 4.5.107 by default
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
2016-07-24 02:36:30 -04:00

7 lines
163 B
Nix

{ callPackage, ... } @ args:
callPackage ./generic.nix (args // {
version = "3.30.33.16";
sha256 = "1azf1b36gqj4z5x0k9wq2dkp99zfyhwb0d6i2cl5fjm3k6js7l45";
})