octave.pkgs.nurbs: init at 1.3.13

wip/yesman
Karl Hallsby 4 years ago committed by Doron Behar
parent 3af6867449
commit bfd539942d
  1. 30
      pkgs/development/octave-modules/nurbs/default.nix
  2. 2
      pkgs/top-level/octave-packages.nix

@ -0,0 +1,30 @@
{ buildOctavePackage
, lib
, fetchurl
}:
buildOctavePackage rec {
pname = "nurbs";
version = "1.3.13";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "0zkyldm63pc3pcal3yvj6af24cvpjvv9qfhf0ihhwcsh4w3yggyv";
};
# Has been fixed in more recent commits, but has not been pushed out as a
# new version yet.
# The sed changes allow nurbs to compile.
patchPhase = ''
sed -i s/feval/octave::feval/g src/*.cc
sed -i s/is_real_type/isreal/g src/*.cc
sed -i s/is_cell/iscell/g src/*.cc
'';
meta = with lib; {
homepage = "https://octave.sourceforge.io/nurbs/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Collection of routines for the creation, and manipulation of Non-Uniform Rational B-Splines (NURBS), based on the NURBS toolbox by Mark Spink";
};
}

@ -155,6 +155,8 @@ makeScope newScope (self:
inherit (pkgs) netcdf;
};
nurbs = callPackage ../development/octave-modules/nurbs { };
signal = callPackage ../development/octave-modules/signal { };
symbolic = callPackage ../development/octave-modules/symbolic {

Loading…
Cancel
Save