1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4 pname = "lksctp-tools";
7 src = fetchFromGitHub {
11 hash = "sha256-h+wMrnx+u/4feNjZr2Gc+y6/80qJ8IVXsrDvHyixMxo=";
14 nativeBuildInputs = [ autoreconfHook ];
16 enableParallelBuilding = true;
19 description = "Linux Kernel Stream Control Transmission Protocol Tools";
20 homepage = "https://github.com/sctp/lksctp-tools/wiki";
21 license = with licenses; [ gpl2Plus lgpl21 ]; # library is lgpl21
22 platforms = platforms.linux;