Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5 # Build-time dependencies 6 ncurses, # >= 5 7 units, 8}: 9 10buildOctavePackage rec { 11 pname = "miscellaneous"; 12 version = "1.3.1"; 13 14 src = fetchurl { 15 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 16 sha256 = "sha256-VxIReiXTHRJmADZGpA6B59dCdDPCY2bkJt/6mrir1kg="; 17 }; 18 19 buildInputs = [ 20 ncurses 21 ]; 22 23 propagatedBuildInputs = [ 24 units 25 ]; 26 27 meta = { 28 homepage = "https://gnu-octave.github.io/packages/miscellaneous/"; 29 license = lib.licenses.gpl3Plus; 30 maintainers = with lib.maintainers; [ KarlJoad ]; 31 description = "Miscellaneous tools that don't fit somewhere else"; 32 }; 33}