410b979fe2
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
21 lines
521 B
Nix
21 lines
521 B
Nix
{ buildOctavePackage
|
|
, lib
|
|
, fetchurl
|
|
}:
|
|
|
|
buildOctavePackage rec {
|
|
pname = "sockets";
|
|
version = "1.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-GNwFLNV1u3UKJp9lhLtCclD2VSKC9Mko1hBoSn5dTpI=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://octave.sourceforge.io/sockets/index.html";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ KarlJoad ];
|
|
description = "Socket functions for networking from within octave";
|
|
};
|
|
}
|