about summary refs log tree commit diff
path: root/pkgs/applications/science/math/dap/default.nix
blob: ed3290f6c27d8d631d19ec5c7db4a3fc2870e3b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, stdenv
, fetchurl
}:

stdenv.mkDerivation rec {
  pname = "dap";
  version = "3.10";

  src = fetchurl {
    url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
    sha256 = "Bk5sty/438jLb1PpurMQ5OqMbr6JqUuuQjcg2bejh2Y=";
  };

  hardeningDisable = [ "format" ];

  meta = with lib; {
    homepage = "https://www.gnu.org/software/dap";
    description = "A small statistics and graphics package based on C";
    longDescription = ''
      Dap is a small statistics and graphics package based on C. Version 3.0 and
      later of Dap can read SBS programs (based on the utterly famous, industry
      standard statistics system with similar initials - you know the one I
      mean)! The user wishing to perform basic statistical analyses is now freed
      from learning and using C syntax for straightforward tasks, while
      retaining access to the C-style graphics and statistics features provided
      by the original implementation. Dap provides core methods of data
      management, analysis, and graphics that are commonly used in statistical
      consulting practice (univariate statistics, correlations and regression,
      ANOVA, categorical data analysis, logistic regression, and nonparametric
      analyses).
    '';
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.unix;
  };
}