mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03: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;
|
||
|
};
|
||
|
}
|