biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / science / machine-learning / openbugs / default.nix
blob8d49534a11f8cb7c372a1b38040fd2f80270eb90
1 { lib
2 , stdenv
3 , fetchurl
4 }:
6 stdenv.mkDerivation rec {
7   pname = "OpenBUGS";
8   version = "3.2.3";
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   };
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   };