···11+{ lib
22+, stdenv
33+, fetchurl
44+}:
55+66+stdenv.mkDerivation rec {
77+ pname = "dap";
88+ version = "3.10";
99+1010+ src = fetchurl {
1111+ url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
1212+ sha256 = "Bk5sty/438jLb1PpurMQ5OqMbr6JqUuuQjcg2bejh2Y=";
1313+ };
1414+1515+ hardeningDisable = [ "format" ];
1616+1717+ meta = with lib; {
1818+ homepage = "https://www.gnu.org/software/dap";
1919+ description = "A small statistics and graphics package based on C";
2020+ longDescription = ''
2121+ Dap is a small statistics and graphics package based on C. Version 3.0 and
2222+ later of Dap can read SBS programs (based on the utterly famous, industry
2323+ standard statistics system with similar initials - you know the one I
2424+ mean)! The user wishing to perform basic statistical analyses is now freed
2525+ from learning and using C syntax for straightforward tasks, while
2626+ retaining access to the C-style graphics and statistics features provided
2727+ by the original implementation. Dap provides core methods of data
2828+ management, analysis, and graphics that are commonly used in statistical
2929+ consulting practice (univariate statistics, correlations and regression,
3030+ ANOVA, categorical data analysis, logistic regression, and nonparametric
3131+ analyses).
3232+ '';
3333+ license = licenses.gpl3Plus;
3434+ maintainers = with maintainers; [ AndersonTorres ];
3535+ platforms = platforms.unix;
3636+ };
3737+}