mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
octave.pkgs.sockets: init at 1.2.1
This commit is contained in:
parent
5c3b1a000c
commit
b1fb1a3ee7
21
pkgs/development/octave-modules/sockets/default.nix
Normal file
21
pkgs/development/octave-modules/sockets/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "sockets";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "18f1zpqcf6h9b4fb0x2c5nvc3mvgj1141f1s8d9gnlhlrjlq8vqg";
|
||||
};
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
@ -177,6 +177,8 @@ makeScope newScope (self:
|
||||
|
||||
signal = callPackage ../development/octave-modules/signal { };
|
||||
|
||||
sockets = callPackage ../development/octave-modules/sockets { };
|
||||
|
||||
struct = callPackage ../development/octave-modules/struct { };
|
||||
|
||||
symbolic = callPackage ../development/octave-modules/symbolic {
|
||||
|
Loading…
Reference in New Issue
Block a user