mirror of
https://github.com/dwinkler1/fran.git
synced 2026-02-19 22:50:59 -05:00
Refactor packages into modular structure under packages/ directory
Co-authored-by: dwinkler1 <22460147+dwinkler1@users.noreply.github.com>
This commit is contained in:
parent
f812c40980
commit
c365b44ff2
7 changed files with 116 additions and 75 deletions
20
packages/s/summclust.nix
Normal file
20
packages/s/summclust.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
prev,
|
||||
fetchfromGitHubJSONFile,
|
||||
versionsDir,
|
||||
}:
|
||||
prev.rPackages.buildRPackage {
|
||||
name = "summclust";
|
||||
src = fetchfromGitHubJSONFile "${versionsDir}/summclust.json";
|
||||
propagatedBuildInputs = builtins.attrValues {
|
||||
inherit
|
||||
(prev.rPackages)
|
||||
dreamerr
|
||||
MASS
|
||||
collapse
|
||||
generics
|
||||
cli
|
||||
rlang
|
||||
;
|
||||
};
|
||||
}
|
||||
10
packages/s/synthdid.nix
Normal file
10
packages/s/synthdid.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
prev,
|
||||
fetchfromGitHubJSONFile,
|
||||
versionsDir,
|
||||
}:
|
||||
prev.rPackages.buildRPackage {
|
||||
name = "synthdid";
|
||||
src = fetchfromGitHubJSONFile "${versionsDir}/synthdid.json";
|
||||
propagatedBuildInputs = [prev.rPackages.mvtnorm];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue