mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
786b4216c5
Split into "current" version, as used by most things (aka gn), and "gn1924", which uses a more recent version of gn which is incompatible with the currently packaged version of v8 in nixpkgs. We can't win, but I need a newer version of gn for envoy. Note that the newer gn matches the version in Chromium's DEPS for v93.0.4577.82, the current Linux stable build as of September.
11 lines
451 B
Nix
11 lines
451 B
Nix
{ callPackage, ... } @ args:
|
|
|
|
callPackage ./generic.nix args {
|
|
# Note: Please use the recommended version for Chromium, e.g.:
|
|
# https://git.archlinux.org/svntogit/packages.git/tree/trunk/chromium-gn-version.sh?h=packages/gn
|
|
rev = "fd3d768bcfd44a8d9639fe278581bd9851d0ce3a";
|
|
revNum = "1718"; # git describe HEAD --match initial-commit | cut -d- -f3
|
|
version = "2020-03-09";
|
|
sha256 = "1asc14y8by7qcn10vbk467hvx93s30pif8r0brissl0sihsaqazr";
|
|
}
|