Sha256: 23e79f00515a1776a6e8400b171ae07e0625f85c397fe65a664babea2d62e66b

Contents?: true

Size: 449 Bytes

Versions: 2

Compression:

Stored size: 449 Bytes

Contents

{ sources ? import ./nix/sources.nix }:
let
  nixpkgs = import sources.nixpkgs { };
in
nixpkgs.mkShell {
  name = "bellroy-gem-env";
  buildInputs = with nixpkgs; [
    bundler
    libnotify
    niv
    pkg-config
    readline
    ruby_2_7
    sqlite
    zlib
  ]
  ++ (if stdenv.hostPlatform.isDarwin then [ libiconv darwin.apple_sdk.frameworks.CoreServices ] else [ ]);
  shellHook = ''
    bundle config --local path "$PWD/vendor/bundle"
  '';
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rails-dynamic-rendering-1.1.0 shell.nix
rails-dynamic-rendering-1.0.3 shell.nix