openbugs: init at 3.2.3

authored by Andres Navarro and committed by Alyssa Ross 68e77505 8f3559b7

+24
+22
pkgs/applications/science/machine-learning/openbugs/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "OpenBUGS"; 8 + version = "3.2.3"; 9 + 10 + src = fetchurl { 11 + url = "https://www.mrc-bsu.cam.ac.uk/wp-content/uploads/2018/04/${pname}-${version}.tar.gz"; 12 + sha256 = "sha256-oonE2gxKw3H4ATImyF69Cp4d7F3puFiVDkhUy4FLTtg="; 13 + }; 14 + 15 + meta = with lib; { 16 + description = "Open source program for Bayesian modelling based on MCMC"; 17 + homepage = "https://www.mrc-bsu.cam.ac.uk/software/bugs/openbugs/"; 18 + maintainers = with maintainers; [ andresnav ]; 19 + license = licenses.gpl3Only; 20 + platforms = [ "i686-linux" ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 1667 1667 1668 1668 ocs-url = libsForQt5.callPackage ../tools/misc/ocs-url { }; 1669 1669 1670 + openbugs = pkgsi686Linux.callPackage ../applications/science/machine-learning/openbugs { }; 1671 + 1670 1672 paperview = callPackage ../tools/X11/paperview { }; 1671 1673 1672 1674 pferd = callPackage ../tools/misc/pferd { };