summary refs log tree commit diff
path: root/pkgs/os-specific/linux/lksctp-tools/default.nix
blob: 8bbd3ab7f427228ceb12f253ef21bace2c3681fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "lksctp-tools-1.0.17";

  src = fetchurl {
    url = "mirror://sourceforge/lksctp/${name}.tar.gz";
    sha256 = "05da6c2v3acc18ndvmkrag6x5lf914b7s0xkkr6wkvrbvd621sqs";
  };

  meta = with lib; {
    description = "Linux Kernel Stream Control Transmission Protocol Tools";
    homepage = "http://lksctp.sourceforge.net/";
    license = with licenses; [ gpl2 lgpl21 ]; # library is lgpl21
    platforms = platforms.linux;
  };
}