-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andres Navarro
committed
May 28, 2023
1 parent
59b3572
commit cfbff1f
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
pkgs/applications/science/machine-learning/openbugs/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters