nixpkgs/pkgs/os-specific/linux/lksctp-tools/default.nix
Fabián Heredia Montiel 3e84f7c96c lksctp-tools: change hash after retag
Reference: https://github.com/sctp/lksctp-tools/issues/62

Didn't review difference between the content
2024-09-24 17:30:45 -06:00

25 lines
641 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "lksctp-tools";
version = "1.0.20";
src = fetchFromGitHub {
owner = "sctp";
repo = "lksctp-tools";
rev = "v${version}";
hash = "sha256-h+wMrnx+u/4feNjZr2Gc+y6/80qJ8IVXsrDvHyixMxo=";
};
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;
};
}