override.nix 399 B

123456789101112131415
  1. pkgs: attrs: with pkgs; with attrs; rec {
  2. pname = "nghttp3";
  3. version = "1.7.0";
  4. nativeBuildInputs = [
  5. cmake pkg-config autoconf libtool automake
  6. ];
  7. buildInputs = [ ];
  8. src = fetchurl {
  9. url = "https://github.com/ngtcp2/nghttp3/releases/download/v${version}/nghttp3-${version}.tar.xz";
  10. hash = "sha256-tOtrzrmSk9mp3yAxwarRZq89V7PjNlWsoGmTl7bw11E=";
  11. };
  12. }