Skip to content

Commit

Permalink
prepare for v0.3.2 (patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Baumann committed Sep 22, 2023
1 parent 9390e28 commit de1e1cf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion R/find_rev.R
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ create_default_nix <- function(path = file.path("inst", "extdata",
package_name = "rix",
repo_url = "https://github.com/b-rodrigues/rix",
branch_name = "master",
commit = "1bd327c7cf315d22ab69865b6fc96c943cd97bd4"
commit = "9390e28e6495f8167f782a17c529949d50c0948c"
)
),
ide = "other",
Expand Down
2 changes: 1 addition & 1 deletion dev/build_envs.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ create_default_nix <- function(path = file.path("inst", "extdata",
package_name = "rix",
repo_url = "https://github.com/b-rodrigues/rix",
branch_name = "master",
commit = "1bd327c7cf315d22ab69865b6fc96c943cd97bd4"
commit = "9390e28e6495f8167f782a17c529949d50c0948c"
)
),
ide = "other",
Expand Down
17 changes: 9 additions & 8 deletions inst/extdata/default.nix
Original file line number Diff line number Diff line change
@@ -1,41 +1,42 @@
# This file was generated by the {rix} R package v0.2.1.9002 on 2023-09-10
# This file was generated by the {rix} R package v0.3.1 on 2023-09-22
# with following call:
# >rix(r_ver = "78058d810644f5ed276804ce7ea9e82d92bee293",
# >rix(r_ver = "fe977679240ac2027b151ecca1bc6ce808c2e8af",
# > r_pkgs = NULL,
# > system_pkgs = "nix",
# > git_pkgs = list(list(package_name = "rix",
# > repo_url = "https://github.com/b-rodrigues/rix",
# > branch_name = "master",
# > commit = "1bd327c7cf315d22ab69865b6fc96c943cd97bd4")),
# > commit = "9390e28e6495f8167f782a17c529949d50c0948c")),
# > ide = "other",
# > project_path = dirname(path),
# > overwrite = TRUE,
# > shell_hook = "R --vanilla")
# It uses nixpkgs' revision 78058d810644f5ed276804ce7ea9e82d92bee293 for reproducibility purposes
# It uses nixpkgs' revision fe977679240ac2027b151ecca1bc6ce808c2e8af for reproducibility purposes
# which will install R version latest
# Report any issues to https://github.com/b-rodrigues/rix
let
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/78058d810644f5ed276804ce7ea9e82d92bee293.tar.gz") {};
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/fe977679240ac2027b151ecca1bc6ce808c2e8af.tar.gz") {};
git_archive_pkgs = [(pkgs.rPackages.buildRPackage {
name = "rix";
src = pkgs.fetchgit {
url = "https://github.com/b-rodrigues/rix";
branchName = "master";
rev = "1bd327c7cf315d22ab69865b6fc96c943cd97bd4";
sha256 = "sha256-qi8FXCsKIuoHoERE6ZhTooHH9f94cRIi6mrUVbQU8NY=";
rev = "9390e28e6495f8167f782a17c529949d50c0948c";
sha256 = "sha256-Ra9pAi0VkDxLmNSLKql5M350BwWjEWi51ktBjdXH4/Q=";
};
propagatedBuildInputs = builtins.attrValues {
inherit (pkgs.rPackages) httr jsonlite sys;
};
}) ];
tex = (pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-basic ;
inherit (pkgs.texlive) scheme-small ;
});
system_packages = builtins.attrValues {
inherit (pkgs) R nix;
};
in
pkgs.mkShell {
LOCALE_ARCHIVE = "${glibcLocales}/lib/locale/locale-archive";
buildInputs = [ git_archive_pkgs system_packages ];
shellHook = ''
R --vanilla
Expand Down

0 comments on commit de1e1cf

Please sign in to comment.