Merge pull request #320350 from trofi/lksctp-tools-update

lksctp-tools: 1.0.17 -> 1.0.19
This commit is contained in:
Sandro 2024-07-28 22:01:22 +02:00 committed by GitHub
commit 018e32bfe0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,17 +1,23 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "lksctp-tools";
version = "1.0.17";
version = "1.0.19";
src = fetchurl {
url = "mirror://sourceforge/lksctp/lksctp-tools-${version}.tar.gz";
sha256 = "05da6c2v3acc18ndvmkrag6x5lf914b7s0xkkr6wkvrbvd621sqs";
src = fetchFromGitHub {
owner = "sctp";
repo = "lksctp-tools";
rev = "v${version}";
hash = "sha256-QEgk9OPFCI5WknUDkqfswApCFeOF+620frQWMyQq2Mk=";
};
nativeBuildInputs = [ autoreconfHook ];
enableParallelBuilding = true;
meta = with lib; {
description = "Linux Kernel Stream Control Transmission Protocol Tools";
homepage = "https://lksctp.sourceforge.net/";
homepage = "https://github.com/sctp/lksctp-tools/wiki";
license = with licenses; [ gpl2Plus lgpl21 ]; # library is lgpl21
platforms = platforms.linux;
};