Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 16.09 16 lines 260 B view raw
1with import <nixpkgs> {}; 2 3stdenv.mkDerivation { 4 name = "generate-r-packages-shell"; 5 6 buildCommand = "exit 1"; 7 8 nativeBuildInputs = [ 9 (rWrapper.override { 10 packages = with rPackages; [ 11 data_table 12 parallel 13 ]; 14 }) 15 ]; 16}