···1+{ lib
2+, stdenv
3+, fetchurl
4+}:
5+6+stdenv.mkDerivation rec {
7+ pname = "dap";
8+ version = "3.10";
9+10+ src = fetchurl {
11+ url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
12+ sha256 = "Bk5sty/438jLb1PpurMQ5OqMbr6JqUuuQjcg2bejh2Y=";
13+ };
14+15+ hardeningDisable = [ "format" ];
16+17+ meta = with lib; {
18+ homepage = "https://www.gnu.org/software/dap";
19+ description = "A small statistics and graphics package based on C";
20+ longDescription = ''
21+ Dap is a small statistics and graphics package based on C. Version 3.0 and
22+ later of Dap can read SBS programs (based on the utterly famous, industry
23+ standard statistics system with similar initials - you know the one I
24+ mean)! The user wishing to perform basic statistical analyses is now freed
25+ from learning and using C syntax for straightforward tasks, while
26+ retaining access to the C-style graphics and statistics features provided
27+ by the original implementation. Dap provides core methods of data
28+ management, analysis, and graphics that are commonly used in statistical
29+ consulting practice (univariate statistics, correlations and regression,
30+ ANOVA, categorical data analysis, logistic regression, and nonparametric
31+ analyses).
32+ '';
33+ license = licenses.gpl3Plus;
34+ maintainers = with maintainers; [ AndersonTorres ];
35+ platforms = platforms.unix;
36+ };
37+}