1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

lksctp-tools: 1.0.17 -> 1.0.19

Changes: https://github.com/sctp/lksctp-tools/blob/master/ChangeLog
This commit is contained in:
Sergei Trofimovich 2024-06-16 21:09:26 +01:00
parent 1f12de7a33
commit 7b9761cb23

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;
};