kronosnet: init at 1.20
This commit is contained in:
parent
81d784ffaf
commit
2c8dc8104a
33
pkgs/development/libraries/kronosnet/default.nix
Normal file
33
pkgs/development/libraries/kronosnet/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ lib, stdenv, fetchFromGitHub
|
||||||
|
, autoreconfHook, pkg-config
|
||||||
|
, libqb, libxml2, libnl, lksctp-tools
|
||||||
|
, nss, openssl, bzip2, lzo, lz4, xz, zlib, zstd
|
||||||
|
, doxygen
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "kronosnet";
|
||||||
|
version = "1.20";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = pname;
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-lP5W+4b9McU2Uqibh2SucIu2y4KluO3B1RpAJKgYq/M=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook pkg-config doxygen ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libqb libxml2 libnl lksctp-tools
|
||||||
|
nss openssl
|
||||||
|
bzip2 lzo lz4 xz zlib zstd
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "VPN on steroids";
|
||||||
|
homepage = "https://kronosnet.org/";
|
||||||
|
license = with licenses; [ lgpl21Plus gpl2Plus ];
|
||||||
|
maintainers = with maintainers; [ ryantm ];
|
||||||
|
};
|
||||||
|
}
|
@ -15050,6 +15050,8 @@ in
|
|||||||
krb5Full = krb5;
|
krb5Full = krb5;
|
||||||
libkrb5 = krb5.override { type = "lib"; };
|
libkrb5 = krb5.override { type = "lib"; };
|
||||||
|
|
||||||
|
kronosnet = callPackage ../development/libraries/kronosnet { };
|
||||||
|
|
||||||
l-smash = callPackage ../development/libraries/l-smash {
|
l-smash = callPackage ../development/libraries/l-smash {
|
||||||
stdenv = gccStdenv;
|
stdenv = gccStdenv;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user