vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / os-specific / linux / lksctp-tools / default.nix
blobd416ddd14b979cee157d7cfc3f1516e29fa816a8
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "lksctp-tools";
5   version = "1.0.20";
7   src = fetchFromGitHub {
8     owner = "sctp";
9     repo = "lksctp-tools";
10     rev = "v${version}";
11     hash = "sha256-h+wMrnx+u/4feNjZr2Gc+y6/80qJ8IVXsrDvHyixMxo=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   enableParallelBuilding = true;
18   meta = with lib; {
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;
23   };