Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildOctavePackage 2, lib 3, fetchurl 4}: 5 6buildOctavePackage rec { 7 pname = "queueing"; 8 version = "1.2.7"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 12 sha256 = "1yhw277i1qgmddf6wbfb6a4zrfhvplkmfr20q1l15z4xi8afnm6d"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://octave.sourceforge.io/queueing/index.html"; 17 license = licenses.gpl3Plus; 18 maintainers = with maintainers; [ KarlJoad ]; 19 description = "Provides functions for queueing networks and Markov chains analysis"; 20 longDescription = '' 21 The queueing package provides functions for queueing networks and Markov 22 chains analysis. This package can be used to compute steady-state 23 performance measures for open, closed and mixed networks with single or 24 multiple job classes. Mean Value Analysis (MVA), convolution, and various 25 bounding techniques are implemented. Furthermore, several transient and 26 steady-state performance measures for Markov chains can be computed, such 27 as state occupancy probabilities, mean time to absorption, time-averaged 28 sojourn times and so forth. Discrete- and continuous-time Markov chains 29 are supported. 30 ''; 31 }; 32}