octave.pkgs.fpl: init at 1.3.5

This commit is contained in:
Karl Hallsby 2021-01-06 10:57:52 -06:00 committed by Doron Behar
parent df13f16837
commit ddabcd3b3a
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ buildOctavePackage
, lib
, fetchurl
}:
buildOctavePackage rec {
pname = "fpl";
version = "1.3.5";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "0cbpahn9flrv9ppp5xakhwh8vyyy7wzlsz22i3s93yqg9q2bh4ys";
};
meta = with lib; {
homepage = "https://octave.sourceforge.io/fpl/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Collection of routines to export data produced by Finite Elements or Finite Volume Simulations in formats used by some visualization programs";
};
}

View file

@ -93,6 +93,8 @@ makeScope newScope (self:
financial = callPackage ../development/octave-modules/financial { };
fpl = callPackage ../development/octave-modules/fpl { };
general = callPackage ../development/octave-modules/general {
nettle = pkgs.nettle;
};