567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
32 lines
747 B
Nix
32 lines
747 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "OpenBUGS";
|
|
version = "3.2.3";
|
|
|
|
outputs = [ "out" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jsta";
|
|
repo = "openbugs";
|
|
rev = "cd921342ba13ee89ee60f9aebd2e96c42bd59ae3";
|
|
sha256 = "sha256-11LrScN1kvtq0Fo7RWGjbQO0U5b5brCbipl5pdZnrFs=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Software package for performing Bayesian analysis and simulation using Markov Chain Monte Carlo";
|
|
homepage = "https://github.com/jsta/openbugs/";
|
|
changelog = "https://github.com/jsta/openbugs/blob/master/ChangeLog";
|
|
platforms = [
|
|
"i686-linux"
|
|
"x86_64-linux"
|
|
];
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ andresnav ];
|
|
};
|
|
}
|