depot/pkgs/os-specific/linux/lksctp-tools/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

24 lines
641 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "lksctp-tools";
version = "1.0.21";
src = fetchFromGitHub {
owner = "sctp";
repo = "lksctp-tools";
rev = "v${version}";
hash = "sha256-+vbdNvHuJLYp901QgtBzMejlbzMyr9Z1eXxR3Zy7eAE=";
};
nativeBuildInputs = [ autoreconfHook ];
enableParallelBuilding = true;
meta = with lib; {
description = "Linux Kernel Stream Control Transmission Protocol Tools";
homepage = "https://github.com/sctp/lksctp-tools/wiki";
license = with licenses; [ gpl2Plus lgpl21 ]; # library is lgpl21
platforms = platforms.linux;
};
}