kcp: init at 1.7

This commit is contained in:
Red Star Over Earth 2023-08-26 17:31:47 +08:00
parent 9b30d7b2b2
commit 5000fb7c47
No known key found for this signature in database
GPG key ID: A5687C915DEBF98D
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "kcp";
version = "1.7";
src = fetchFromGitHub {
owner = "skywind3000";
repo = "kcp";
rev = version;
hash = "sha256-yW40x4T++4rB7hoabGN8qiSN7octyoUYEfE9oDlLxjU=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "A Fast and Reliable ARQ Protocol";
homepage = "https://github.com/skywind3000/kcp";
license = licenses.mit;
maintainers = with maintainers; [ rs0vere ];
platforms = platforms.all;
};
}

View file

@ -22328,6 +22328,8 @@ with pkgs;
judy = callPackage ../development/libraries/judy { };
kcp = callPackage ../development/libraries/kcp { };
kddockwidgets = libsForQt5.callPackage ../development/libraries/kddockwidgets { };
keybinder = callPackage ../development/libraries/keybinder {