nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 32 lines 664 B view raw
1{ buildOctavePackage 2, lib 3, fetchurl 4# Build-time dependencies 5, ncurses # >= 5 6, units 7}: 8 9buildOctavePackage rec { 10 pname = "miscellaneous"; 11 version = "1.3.0"; 12 13 src = fetchurl { 14 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 15 sha256 = "10n107njz24ln7v9a1l3dkh7s7vd6qwgbinrj1nl4wflxsir4l9k"; 16 }; 17 18 buildInputs = [ 19 ncurses 20 ]; 21 22 propagatedBuildInputs = [ 23 units 24 ]; 25 26 meta = with lib; { 27 homepage = "https://octave.sourceforge.io/miscellaneous/index.html"; 28 license = licenses.gpl3Plus; 29 maintainers = with maintainers; [ KarlJoad ]; 30 description = "Miscellaneous tools that don't fit somewhere else"; 31 }; 32}