18 gsettings-desktop-schemas,
26 stdenv.mkDerivation rec {
31 url = "mirror://gnu/pspp/${pname}-${version}.tar.gz";
32 sha256 = "sha256-jtuw8J6M+AEMrZ4FWeAjDX/FquRyHHVsNQVU3zMCTAA=";
52 gsettings-desktop-schemas
59 "${libxml2.dev}/include/libxml2/:" + lib.makeSearchPathOutput "dev" "include" buildInputs;
60 LIBRARY_PATH = lib.makeLibraryPath buildInputs;
64 enableParallelBuilding = true;
67 wrapProgram "$out/bin/psppire" \
68 --prefix XDG_DATA_DIRS : "$out/share" \
69 --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS" \
70 --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
71 --prefix GIO_EXTRA_MODULES : "${lib.getLib dconf}/lib/gio/modules"
75 homepage = "https://www.gnu.org/software/pspp/";
76 description = "Free replacement for SPSS, a program for statistical analysis of sampled data";
77 license = lib.licenses.gpl3Plus;
80 PSPP is a program for statistical analysis of sampled data. It is
81 a Free replacement for the proprietary program SPSS.
83 PSPP can perform descriptive statistics, T-tests, anova, linear
84 and logistic regression, cluster analysis, factor analysis,
85 non-parametric tests and more. Its backend is designed to perform
86 its analyses as fast as possible, regardless of the size of the
87 input data. You can use PSPP with its graphical interface or the
88 more traditional syntax commands.
91 platforms = lib.platforms.unix;