83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
18 lines
527 B
Nix
18 lines
527 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lksctp-tools";
|
|
version = "1.0.17";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/lksctp/lksctp-tools-${version}.tar.gz";
|
|
sha256 = "05da6c2v3acc18ndvmkrag6x5lf914b7s0xkkr6wkvrbvd621sqs";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Linux Kernel Stream Control Transmission Protocol Tools";
|
|
homepage = "https://lksctp.sourceforge.net/";
|
|
license = with licenses; [ gpl2Plus lgpl21 ]; # library is lgpl21
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|