pspp: add version 0.8.1
This commit is contained in:
parent
3a7efa38ba
commit
90f9726fa7
40
pkgs/applications/science/math/pssp/default.nix
Normal file
40
pkgs/applications/science/math/pssp/default.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ stdenv, fetchurl, libxml2, readline, zlib, perl, cairo, gtk, gsl
|
||||||
|
, pkgconfig, gtksourceview, pango, gettext, libglade
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "pspp-0.8.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnu/pspp/${name}.tar.gz";
|
||||||
|
sha256 = "0qhxsdbwxd3cn1shc13wxvx2lg32lp4z6sz24kv3jz7p5xfi8j7x";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libxml2 readline zlib perl cairo gtk gsl pkgconfig
|
||||||
|
gtksourceview pango gettext libglade ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://www.gnu.org/software/pspp/";
|
||||||
|
description = "a free replacement for SPSS, a program for statistical analysis of sampled data";
|
||||||
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
PSPP is a program for statistical analysis of sampled data. It is
|
||||||
|
a Free replacement for the proprietary program SPSS.
|
||||||
|
|
||||||
|
PSPP can perform descriptive statistics, T-tests, anova, linear
|
||||||
|
and logistic regression, cluster analysis, factor analysis,
|
||||||
|
non-parametric tests and more. Its backend is designed to perform
|
||||||
|
its analyses as fast as possible, regardless of the size of the
|
||||||
|
input data. You can use PSPP with its graphical interface or the
|
||||||
|
more traditional syntax commands.
|
||||||
|
'';
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
|
};
|
||||||
|
}
|
@ -9691,6 +9691,10 @@ let
|
|||||||
|
|
||||||
pari = callPackage ../applications/science/math/pari {};
|
pari = callPackage ../applications/science/math/pari {};
|
||||||
|
|
||||||
|
pspp = callPackage ../applications/science/math/pssp {
|
||||||
|
inherit (gnome) libglade gtksourceview;
|
||||||
|
};
|
||||||
|
|
||||||
R = callPackage ../applications/science/math/R {
|
R = callPackage ../applications/science/math/R {
|
||||||
inherit (xlibs) libX11 libXt;
|
inherit (xlibs) libX11 libXt;
|
||||||
texLive = texLiveAggregationFun { paths = [ texLive texLiveExtra ]; };
|
texLive = texLiveAggregationFun { paths = [ texLive texLiveExtra ]; };
|
||||||
|
Loading…
Reference in New Issue
Block a user