Skip to content

Commit

Permalink
openbugs: init at 3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Navarro committed May 28, 2023
1 parent 59b3572 commit cfbff1f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/applications/science/machine-learning/openbugs/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ lib
, stdenv
, fetchurl
}:

stdenv.mkDerivation rec {
pname = "OpenBUGS";
version = "3.2.3";

src = fetchurl {
url = "https://www.mrc-bsu.cam.ac.uk/wp-content/uploads/2018/04/${pname}-${version}.tar.gz";
sha256 = "sha256-oonE2gxKw3H4ATImyF69Cp4d7F3puFiVDkhUy4FLTtg=";
};

meta = with lib; {
description = "Open source program for Bayesian modelling based on MCMC";
homepage = "https://www.mrc-bsu.cam.ac.uk/software/bugs/openbugs/";
maintainers = with maintainers; [ andresnav ];
license = licenses.gpl3Only;
platforms = [ "i686-linux" ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1600,6 +1600,8 @@ with pkgs;

ocs-url = libsForQt5.callPackage ../tools/misc/ocs-url { };

openbugs = pkgsi686Linux.callPackage ../applications/science/machine-learning/openbugs { };

paperview = callPackage ../tools/X11/paperview { };

pferd = callPackage ../tools/misc/pferd { };
Expand Down

0 comments on commit cfbff1f

Please sign in to comment.