Files
2026-04-04 00:19:15 -05:00

33 lines
699 B
Nix

{
buildOctavePackage,
lib,
fetchFromGitHub,
nix-update-script,
}:
buildOctavePackage rec {
pname = "sockets";
version = "1.5.0";
src = fetchFromGitHub {
owner = "gnu-octave";
repo = "octave-sockets";
tag = "release-${version}";
sha256 = "sha256-l5W/mLYVcTRYKLCzM8MQW7nad+Gq0fy2XKQmdH8GG/Y=";
};
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"release-(.*)"
];
};
meta = {
homepage = "https://gnu-octave.github.io/packages/sockets/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ ravenjoad ];
description = "Socket functions for networking from within octave";
};
}