about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-09-26 11:41:07 +0200
committerPeter Simons <simons@cryp.to>2013-09-26 11:53:38 +0200
commit90f9726fa75ce73233110bc27434ec50ef737add (patch)
tree481565dc48d555c646882da15129f4d2b98cdce7 /pkgs/applications/science
parent3a7efa38ba190e609a29e104ebd40c663e3e7247 (diff)
downloadnixlib-90f9726fa75ce73233110bc27434ec50ef737add.tar
nixlib-90f9726fa75ce73233110bc27434ec50ef737add.tar.gz
nixlib-90f9726fa75ce73233110bc27434ec50ef737add.tar.bz2
nixlib-90f9726fa75ce73233110bc27434ec50ef737add.tar.lz
nixlib-90f9726fa75ce73233110bc27434ec50ef737add.tar.xz
nixlib-90f9726fa75ce73233110bc27434ec50ef737add.tar.zst
nixlib-90f9726fa75ce73233110bc27434ec50ef737add.zip
pspp: add version 0.8.1
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/pssp/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/pssp/default.nix b/pkgs/applications/science/math/pssp/default.nix
new file mode 100644
index 000000000000..587f41fe998b
--- /dev/null
+++ b/pkgs/applications/science/math/pssp/default.nix
@@ -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 ];
+  };
+}