mirror of
https://github.com/dwinkler1/fran.git
synced 2026-02-19 22:50:59 -05:00
10 lines
225 B
Nix
10 lines
225 B
Nix
{
|
|
prev,
|
|
fetchfromGitHubJSONFile,
|
|
versionsDir,
|
|
}:
|
|
prev.rPackages.buildRPackage {
|
|
name = "synthdid";
|
|
src = fetchfromGitHubJSONFile "${versionsDir}/synthdid.json";
|
|
propagatedBuildInputs = [prev.rPackages.mvtnorm];
|
|
}
|