Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgs/development/libraries/bwidget/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ stdenv.mkDerivation rec {

src = fetchurl {
url = "mirror://sourceforge/tcllib/bwidget-${version}.tar.gz";
sha256 = "0knlnpmwam74v0qa1h9gg4f32vzzz7ays2wbslflf51ilg7nw6jk";
sha256 = "0wm6hk3rnqhnn2cyw24drqwbfnysp6jyfi8lc1vih5k704a955lf";
};

dontBuild = true;
Expand Down
358 changes: 187 additions & 171 deletions pkgs/development/r-modules/bioc-annotation-packages.nix

Large diffs are not rendered by default.

744 changes: 386 additions & 358 deletions pkgs/development/r-modules/bioc-experiment-packages.nix

Large diffs are not rendered by default.

3,447 changes: 1,810 additions & 1,637 deletions pkgs/development/r-modules/bioc-packages.nix

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions pkgs/development/r-modules/bioc-workflows-packages.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions pkgs/development/r-modules/build_packages.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/sh
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the purpose of this script?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a test script to build packages. I used it to test all of the packages. Complements the generation of all the packages created by generate-r-packages.R. Intended for use by someone updating all the R packages, not a user trying to install some.

# args: names pkgs start end
pkgs=$1
start=1
if [[ $2 -gt 1 ]] ; then
start=$2
fi

end=100000
if [[ $3 -ne 0 ]] ; then
end=$3
echo "building from $start to $end"
fi


i=1
trap "exit" INT
for pkg in $(cat $pkgs)
do
if [[ $i -ge $start && $i -le $end ]] ; then
echo "$i of $start to $end: Building ${pkg}"
nix build -f test-evaluation.nix rPackages.${pkg}
fi
let "i+=1"

done

Loading