about summary refs log tree commit diff
path: root/pkgs/applications/science/machine-learning
diff options
context:
space:
mode:
authorAndres Navarro <git@andresnav.com>2023-05-22 21:45:53 +0200
committerAlyssa Ross <hi@alyssa.is>2023-05-28 12:58:37 +0000
commit68e77505aebf81d27266e96285012b193b542f31 (patch)
tree3809981d7b53adadc1e02bc3da55004b6c834060 /pkgs/applications/science/machine-learning
parent8f3559b77d6558ed46846b6731a13e4160dfac62 (diff)
openbugs: init at 3.2.3
Diffstat (limited to 'pkgs/applications/science/machine-learning')
-rw-r--r--pkgs/applications/science/machine-learning/openbugs/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/science/machine-learning/openbugs/default.nix b/pkgs/applications/science/machine-learning/openbugs/default.nix
new file mode 100644
index 0000000000000..8d49534a11f8c
--- /dev/null
+++ b/pkgs/applications/science/machine-learning/openbugs/default.nix
@@ -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" ];
+  };
+}