lol

Merge pull request #113681 from AndersonTorres/new-dap

authored by

Sandro and committed by
GitHub
c1a0106f f583732e

+40 -1
+37
pkgs/applications/science/math/dap/default.nix
··· 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 + }
pkgs/tools/security/1password-gui/default.nix pkgs/applications/misc/1password-gui/default.nix
pkgs/tools/security/1password-gui/update.sh pkgs/applications/misc/1password-gui/update.sh
+3 -1
pkgs/top-level/all-packages.nix
··· 619 619 620 620 _1password = callPackage ../applications/misc/1password { }; 621 621 622 - _1password-gui = callPackage ../tools/security/1password-gui { }; 622 + _1password-gui = callPackage ../applications/misc/1password-gui { }; 623 623 624 624 _6tunnel = callPackage ../tools/networking/6tunnel { }; 625 625 ··· 28379 28379 opencv3 = opencv3WithoutCuda; # Used only for image loading. 28380 28380 cudaSupport = config.cudaSupport or false; 28381 28381 }; 28382 + 28383 + dap = callPackage ../applications/science/math/dap { }; 28382 28384 28383 28385 ecm = callPackage ../applications/science/math/ecm { }; 28384 28386