···11-{
22- lib,
33- stdenv,
44- fetchurl,
55-}:
66-77-stdenv.mkDerivation rec {
88- pname = "dap";
99- version = "3.10";
1010-1111- src = fetchurl {
1212- url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
1313- sha256 = "Bk5sty/438jLb1PpurMQ5OqMbr6JqUuuQjcg2bejh2Y=";
1414- };
1515-1616- hardeningDisable = [ "format" ];
1717-1818- meta = with lib; {
1919- homepage = "https://www.gnu.org/software/dap";
2020- description = "Small statistics and graphics package based on C";
2121- longDescription = ''
2222- Dap is a small statistics and graphics package based on C. Version 3.0 and
2323- later of Dap can read SBS programs (based on the utterly famous, industry
2424- standard statistics system with similar initials - you know the one I
2525- mean)! The user wishing to perform basic statistical analyses is now freed
2626- from learning and using C syntax for straightforward tasks, while
2727- retaining access to the C-style graphics and statistics features provided
2828- by the original implementation. Dap provides core methods of data
2929- management, analysis, and graphics that are commonly used in statistical
3030- consulting practice (univariate statistics, correlations and regression,
3131- ANOVA, categorical data analysis, logistic regression, and nonparametric
3232- analyses).
3333- '';
3434- license = licenses.gpl3Plus;
3535- maintainers = with maintainers; [ ];
3636- platforms = platforms.unix;
3737- };
3838-}
+1
pkgs/top-level/aliases.nix
···496496497497 ### D ###
498498499499+ dap = throw "'dap' has been removed because it doesn't compile and has been unmaintained since 2014"; # Added 2025-05-10
499500 dart_stable = throw "'dart_stable' has been renamed to/replaced by 'dart'"; # Converted to throw 2024-10-17
500501 dart-sass-embedded = throw "dart-sass-embedded has been removed from nixpkgs, as is now included in Dart Sass itself.";
501502 dat = nodePackages.dat;