Unverified Commit ddd54024 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #233996 from ncfavier/ddnet

ddnet: 16.9 -> 17.0
parents 86b0cdb2 50d49cf2
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cargo
, cmake
, ninja
@@ -35,19 +34,19 @@

stdenv.mkDerivation rec {
  pname = "ddnet";
  version = "16.9";
  version = "17.0";

  src = fetchFromGitHub {
    owner = "ddnet";
    repo = pname;
    rev = version;
    hash = "sha256-DOP2v82346YQtL55Ix0gn9cTpvbO1ooeCIGRpgEMFpA=";
    hash = "sha256-boFXzARVG2At92j9gSavteAQ8qTjgJ91hIefVr/e6og=";
  };

  cargoDeps = rustPlatform.fetchCargoTarball {
    name = "${pname}-${version}";
    inherit src;
    hash = "sha256-xTB8wg4PIdg7MB3545zN83/41fUsqFE2Sk5aTXrGhps=";
    hash = "sha256-3itblnHlY1L8g/EGCi1BIWGD6INOpnvLCwJ7zL7KV4w=";
  };

  nativeBuildInputs = [