summary refs log tree commit diff
path: root/pkgs/development/octave-modules/sockets/default.nix
blob: 690c775f67e9a305337bdda05e71cc314d700db0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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";
  };
}