waylyrics: 0.3.16 -> 0.3.20 (#364626)
[NixPkgs.git] / pkgs / applications / science / machine-learning / openbugs / default.nix
blob926188b418156e85678cc163b8836a103950e0f6
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 }:
6 stdenv.mkDerivation rec {
7   pname = "OpenBUGS";
8   version = "3.2.3";
10   outputs = [ "out" ];
12   src = fetchFromGitHub {
13     owner = "jsta";
14     repo = "openbugs";
15     rev = "cd921342ba13ee89ee60f9aebd2e96c42bd59ae3";
16     sha256 = "sha256-11LrScN1kvtq0Fo7RWGjbQO0U5b5brCbipl5pdZnrFs=";
17   };
19   meta = with lib; {
20     description = "Software package for performing Bayesian analysis and simulation using Markov Chain Monte Carlo";
21     homepage = "https://www.mrc-bsu.cam.ac.uk/software/bugs/openbugs/";
22     changelog = "https://github.com/jsta/openbugs/blob/master/ChangeLog";
23     platforms = [ "i686-linux" "x86_64-linux" ];
24     license = licenses.gpl3Only;
25     maintainers = with maintainers; [ andresnav ];
26   };