override.nix 238 B

123456789
  1. pkgs: attrs: with pkgs; with attrs; rec {
  2. version = "2.9.4";
  3. src = fetchFromGitHub {
  4. owner = "nodejs";
  5. repo = "http-parser";
  6. rev = "v${version}";
  7. sha256 = "1vda4dp75pjf5fcph73sy0ifm3xrssrmf927qd1x8g3q46z0cv6c";
  8. };
  9. }