mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
31 lines
863 B
Nix
31 lines
863 B
Nix
{ 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 ];
|
|
|
|
# https://github.com/sctplab/usrsctp/issues/662
|
|
postPatch = ''
|
|
substituteInPlace usrsctplib/CMakeLists.txt \
|
|
--replace '$'{exec_prefix}/'$'{CMAKE_INSTALL_LIBDIR} '$'{CMAKE_INSTALL_FULL_LIBDIR} \
|
|
--replace '$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR}
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|