mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
17 lines
419 B
Nix
17 lines
419 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lksctp-tools-1.0.17";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/lksctp/${name}.tar.gz";
|
|
sha256 = "05da6c2v3acc18ndvmkrag6x5lf914b7s0xkkr6wkvrbvd621sqs";
|
|
};
|
|
|
|
meta = {
|
|
description = "Linux Kernel Stream Control Transmission Protocol Tools.";
|
|
homepage = http://lksctp.sourceforge.net/;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|