My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/lksctp-tools/default.nix

18 lines
522 B

{ 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 = "http://lksctp.sourceforge.net/";
license = with licenses; [ gpl2 lgpl21 ]; # library is lgpl21
platforms = platforms.linux;
};
}