lol

octave.pkgs.vrml: init at 1.0.13

authored by

Karl Hallsby and committed by
Doron Behar
487f5ba2 97ac6998

+45
+41
pkgs/development/octave-modules/vrml/default.nix
··· 1 + { buildOctavePackage 2 + , lib 3 + , fetchurl 4 + # Octave dependencies 5 + , linear-algebra 6 + , miscellaneous 7 + , struct 8 + , statistics 9 + # Runtime dependencies 10 + , freewrl 11 + }: 12 + 13 + buildOctavePackage rec { 14 + pname = "vrml"; 15 + version = "1.0.13"; 16 + 17 + src = fetchurl { 18 + url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 19 + sha256 = "1mx93k150agd27mbzvds13v9z0x36j68hwpdvlvjmcl2fga5fly4"; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + freewrl 24 + ]; 25 + 26 + requiredOctavePackages = [ 27 + linear-algebra 28 + miscellaneous 29 + struct 30 + statistics 31 + ]; 32 + 33 + meta = with lib; { 34 + homepage = "https://octave.sourceforge.io/vrml/index.html"; 35 + license = with licenses; [ gpl3Plus fdl12Plus ]; 36 + maintainers = with maintainers; [ KarlJoad ]; 37 + description = "3D graphics using VRML"; 38 + # Marked this way until KarlJoad gets freewrl as a runtime dependency. 39 + broken = true; 40 + }; 41 + }
+4
pkgs/top-level/octave-packages.nix
··· 211 211 212 212 video = callPackage ../development/octave-modules/video { }; 213 213 214 + vrml = callPackage ../development/octave-modules/vrml { 215 + freewrl = null; 216 + }; 217 + 214 218 })