lol

octave.pkgs.fpl: init at 1.3.5

authored by

Karl Hallsby and committed by
Doron Behar
ddabcd3b df13f168

+23
+21
pkgs/development/octave-modules/fpl/default.nix
··· 1 + { buildOctavePackage 2 + , lib 3 + , fetchurl 4 + }: 5 + 6 + buildOctavePackage rec { 7 + pname = "fpl"; 8 + version = "1.3.5"; 9 + 10 + src = fetchurl { 11 + url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 12 + sha256 = "0cbpahn9flrv9ppp5xakhwh8vyyy7wzlsz22i3s93yqg9q2bh4ys"; 13 + }; 14 + 15 + meta = with lib; { 16 + homepage = "https://octave.sourceforge.io/fpl/index.html"; 17 + license = licenses.gpl3Plus; 18 + maintainers = with maintainers; [ KarlJoad ]; 19 + description = "Collection of routines to export data produced by Finite Elements or Finite Volume Simulations in formats used by some visualization programs"; 20 + }; 21 + }
+2
pkgs/top-level/octave-packages.nix
··· 93 93 94 94 financial = callPackage ../development/octave-modules/financial { }; 95 95 96 + fpl = callPackage ../development/octave-modules/fpl { }; 97 + 96 98 general = callPackage ../development/octave-modules/general { 97 99 nettle = pkgs.nettle; 98 100 };