Merge pull request #320350 from trofi/lksctp-tools-update
lksctp-tools: 1.0.17 -> 1.0.19
This commit is contained in:
commit
018e32bfe0
@ -1,17 +1,23 @@
|
|||||||
{ lib, stdenv, fetchurl }:
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "lksctp-tools";
|
pname = "lksctp-tools";
|
||||||
version = "1.0.17";
|
version = "1.0.19";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/lksctp/lksctp-tools-${version}.tar.gz";
|
owner = "sctp";
|
||||||
sha256 = "05da6c2v3acc18ndvmkrag6x5lf914b7s0xkkr6wkvrbvd621sqs";
|
repo = "lksctp-tools";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-QEgk9OPFCI5WknUDkqfswApCFeOF+620frQWMyQq2Mk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Linux Kernel Stream Control Transmission Protocol Tools";
|
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
|
license = with licenses; [ gpl2Plus lgpl21 ]; # library is lgpl21
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user