ddnet: 16.9 -> 17.0

https://ddnet.org/downloads/#17.0
This commit is contained in:
Naïm Favier 2023-05-25 15:51:46 +02:00
parent 5acfd656f6
commit 50d49cf225
No known key found for this signature in database
GPG Key ID: 95AFCE8211908325

View File

@ -1,7 +1,6 @@
{ 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 = [