57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
lttng-tools,
|
|
libatomic_ops,
|
|
perl,
|
|
coreutils,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libmsquic";
|
|
version = "2.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = "msquic";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-GWkdwPms0jqVADp8D4HtvOi+9YORZpqbJ7OqKnS/jB0=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
perl
|
|
];
|
|
|
|
buildInputs = [
|
|
libatomic_ops
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
lttng-tools
|
|
];
|
|
|
|
postUnpack = ''
|
|
for f in "$(find . -type f -name "*.pl")"; do
|
|
patchShebangs --build $f 2>&1 > /dev/null
|
|
done
|
|
|
|
for g in $(find . -type f -name "*" ); do
|
|
if test -f $g; then
|
|
sed -i "s|/usr/bin/env|${coreutils}/bin/env|g" $g
|
|
fi
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Cross-platform, C implementation of the IETF QUIC protocol, exposed to C, C++, C# and Rust";
|
|
homepage = "https://github.com/microsoft/msquic";
|
|
changelog = "https://github.com/microsoft/msquic/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ SohamG ];
|
|
};
|
|
})
|