3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/math/gretl/default.nix

44 lines
1,012 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, curl, fftw, gmp, gnuplot, gtk3, gtksourceview3, json-glib
2020-06-10 18:34:38 +01:00
, lapack, libxml2, mpfr, openblas, pkg-config, readline }:
stdenv.mkDerivation rec {
pname = "gretl";
2021-05-05 14:30:46 +01:00
version = "2021b";
2020-06-10 18:34:38 +01:00
src = fetchurl {
url = "mirror://sourceforge/gretl/${pname}-${version}.tar.xz";
2021-05-05 14:30:46 +01:00
sha256 = "sha256-3KSAA0UPx3cqMXf/G5nrlCfLjWcDiGtzvJe/syRyE6c=";
2020-06-10 18:34:38 +01:00
};
buildInputs = [
curl
fftw
gmp
gnuplot
gtk3
gtksourceview3
json-glib
lapack
libxml2
mpfr
openblas
readline
];
nativeBuildInputs = [ pkg-config ];
enableParallelBuilding = true;
meta = with lib; {
2020-06-10 18:34:38 +01:00
description = "A software package for econometric analysis";
longDescription = ''
gretl is a cross-platform software package for econometric analysis,
written in the C programming language.
'';
homepage = "http://gretl.sourceforge.net";
license = licenses.gpl3;
maintainers = with maintainers; [ dmrauh ];
platforms = with platforms; all;
};
}