emacsPackages.treemacs: replace python3 program (#364623)
[NixPkgs.git] / pkgs / development / r-modules / test-evaluation.nix
blobb7898fd478a8ddb89683530d6cc40c601554b609
1 # Run
3 #   nix-build test-evaluation.nix --dry-run
5 # to test whether the R package set evaluates properly.
7 let
9   config = {
10     allowBroken = true;
11     allowUnfree = true;
12   };
14   inherit (import ../../.. { inherit config; }) pkgs;
16   rWrapper = pkgs.rWrapper.override {
17     packages = pkgs.lib.filter pkgs.lib.isDerivation (pkgs.lib.attrValues pkgs.rPackages);
18   };
21 rWrapper