Merge pull request #122448 from misuzu/psi-plus-update

psi-plus: 1.4.1473 -> 1.5.1520
This commit is contained in:
Sandro
2021-05-18 01:29:50 +02:00
committed by GitHub
3 changed files with 36 additions and 9 deletions
@@ -0,0 +1,23 @@
{ stdenv, lib, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "usrsctp";
version = "0.9.5.0";
src = fetchFromGitHub {
owner = "sctplab";
repo = "usrsctp";
rev = version;
sha256 = "10ndzkip8blgkw572n3dicl6mgjaa7kygwn3vls80liq92vf1sa9";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
homepage = "https://github.com/sctplab/usrsctp";
description = "A portable SCTP userland stack";
maintainers = with maintainers; [ misuzu ];
license = licenses.bsd3;
platforms = platforms.unix;
};
}