diff options
| author | Justin Bedo <cu@cua0.org> | 2023-02-07 16:09:06 +1100 |
|---|---|---|
| committer | Justin Bedo <cu@cua0.org> | 2023-02-07 17:08:50 +1100 |
| commit | b555b36b5c14f7a4342b10bcea8374bfe5e0fac8 (patch) | |
| tree | a08064479c101d33ea350382b1cc56e748ce40c2 /flake.nix | |
| parent | a0b5f58d8d2040306006a8b9deded629692ed8f3 (diff) | |
add R bindings
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -10,7 +10,10 @@ flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs {inherit system;}; in rec { - packages = {lib = pkgs.callPackage ./. {};}; + packages = rec { + lib = pkgs.callPackage ./. {}; + R = pkgs.callPackage ./R { inherit (pkgs) R; inherit (pkgs.rPackages) buildRPackage; coda-pca = lib; }; + }; defaultPackage = packages.lib; }); } |
