nixpkgs/pkgs/development/libraries/kronosnet/default.nix

34 lines
770 B
Nix
Raw Normal View History

2019-03-03 00:32:22 +00:00
{ 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";
2021-12-10 05:44:28 +00:00
version = "1.23";
2019-03-03 00:32:22 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2021-12-10 05:44:28 +00:00
sha256 = "sha256-+uQXV5tOLsBPFzfFHqwV1Oz4+KwZMkdjO8zfIljV+ro=";
2019-03-03 00:32:22 +00:00
};
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 ];
};
}