about summary refs log tree commit diff
path: root/pkgs/applications/science/machine-learning/openbugs/default.nix
blob: 8d49534a11f8cb7c372a1b38040fd2f80270eb90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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" ];
  };
}