Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5}: 6 7buildOctavePackage rec { 8 pname = "windows"; 9 version = "1.6.5"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 13 sha256 = "sha256-j/goQc57jcfxlCsbf31Mx8oNud1vNE0D/hNfXyvVmTc="; 14 }; 15 16 meta = { 17 homepage = "https://gnu-octave.github.io/packages/windows/"; 18 license = lib.licenses.gpl3Plus; 19 maintainers = with lib.maintainers; [ KarlJoad ]; 20 description = "Provides COM interface and additional functionality on Windows"; 21 }; 22}