summary refs log tree commit diff
path: root/pkgs/development/octave-modules
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2021-01-06 11:56:32 -0600
committerDoron Behar <doron.behar@gmail.com>2021-02-24 21:00:51 +0200
commit5c3b1a000c936917da8dc70319221256d6447cc9 (patch)
treea789e66c60bf6d1ecc79172de026c1a54e2c8c62 /pkgs/development/octave-modules
parentd8612d65983236f4cfa2d246366736e742ec7121 (diff)
downloadnixpkgs-5c3b1a000c936917da8dc70319221256d6447cc9.tar
nixpkgs-5c3b1a000c936917da8dc70319221256d6447cc9.tar.gz
nixpkgs-5c3b1a000c936917da8dc70319221256d6447cc9.tar.bz2
nixpkgs-5c3b1a000c936917da8dc70319221256d6447cc9.tar.lz
nixpkgs-5c3b1a000c936917da8dc70319221256d6447cc9.tar.xz
nixpkgs-5c3b1a000c936917da8dc70319221256d6447cc9.tar.zst
nixpkgs-5c3b1a000c936917da8dc70319221256d6447cc9.zip
octave.pkgs.queueing: init at 1.2.7
Diffstat (limited to 'pkgs/development/octave-modules')
-rw-r--r--pkgs/development/octave-modules/queueing/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/octave-modules/queueing/default.nix b/pkgs/development/octave-modules/queueing/default.nix
new file mode 100644
index 00000000000..75b3e67e353
--- /dev/null
+++ b/pkgs/development/octave-modules/queueing/default.nix
@@ -0,0 +1,32 @@
+{ buildOctavePackage
+, lib
+, fetchurl
+}:
+
+buildOctavePackage rec {
+  pname = "queueing";
+  version = "1.2.7";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
+    sha256 = "1yhw277i1qgmddf6wbfb6a4zrfhvplkmfr20q1l15z4xi8afnm6d";
+  };
+
+  meta = with lib; {
+    homepage = "https://octave.sourceforge.io/queueing/index.html";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ KarlJoad ];
+    description = "Provides functions for queueing networks and Markov chains analysis";
+    longDescription = ''
+      The queueing package provides functions for queueing networks and Markov
+      chains analysis. This package can be used to compute steady-state
+      performance measures for open, closed and mixed networks with single or
+      multiple job classes. Mean Value Analysis (MVA), convolution, and various
+      bounding techniques are implemented. Furthermore, several transient and
+      steady-state performance measures for Markov chains can be computed, such
+      as state occupancy probabilities, mean time to absorption, time-averaged
+      sojourn times and so forth. Discrete- and continuous-time Markov chains
+      are supported.
+    '';
+  };
+}