nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 21 lines 609 B view raw
1{ buildOctavePackage 2, lib 3, fetchurl 4}: 5 6buildOctavePackage rec { 7 pname = "nurbs"; 8 version = "1.4.3"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 12 sha256 = "16r05av75nvmkz1knf0nv0gj4fcjjf3jnyf94bdgxf84wahncim7"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://octave.sourceforge.io/nurbs/index.html"; 17 license = licenses.gpl3Plus; 18 maintainers = with maintainers; [ KarlJoad ]; 19 description = "Collection of routines for the creation, and manipulation of Non-Uniform Rational B-Splines (NURBS), based on the NURBS toolbox by Mark Spink"; 20 }; 21}