gretl 2023a -> 2023b https://repology.org/project/gretl/versions attrpath: gretl Checking auto update branch... No auto update branch exists Old version 2023a" not present in master derivation file with contents: { lib , stdenv , fetchurl , curl , fftw , gmp , gnuplot , gtk3 , gtksourceview3 , json-glib , lapack , libxml2 , mpfr , openblas , readline , Accelerate , pkg-config }: stdenv.mkDerivation (finalAttrs: { pname = "gretl"; version = "2023b"; src = fetchurl { url = "mirror://sourceforge/gretl/gretl-${finalAttrs.version}.tar.xz"; hash = "sha256-Hf025JjFxde43TN/1m9PeA1uHqxKTZMI8+1qf3XJLGs="; }; buildInputs = [ curl fftw gmp gnuplot gtk3 gtksourceview3 json-glib lapack libxml2 mpfr openblas readline ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Accelerate ]; nativeBuildInputs = [ pkg-config ]; enableParallelBuilding = true; # Missing install depends: # cp: cannot stat '...-gretl-2022c/share/gretl/data/plotbars': Not a directory # make[1]: *** [Makefile:73: install_datafiles] Error 1 enableParallelInstalling = false; meta = { description = "A software package for econometric analysis"; homepage = "https://gretl.sourceforge.net"; license = lib.licenses.gpl3; longDescription = '' gretl is a cross-platform software package for econometric analysis, written in the C programming language. ''; maintainers = with lib.maintainers; [ dmrauh ]; platforms = lib.platforms.all; }; })