Sha256: ce8dbd425deb5f4e5af984644ca631c701d2b85f189e877383925615534dc5d2

Contents?: true

Size: 324 Bytes

Versions: 7

Compression:

Stored size: 324 Bytes

Contents

let
  pkgs = import <nixpkgs> {};
  stdenv = pkgs.stdenv;

in stdenv.mkDerivation rec {
  name = "haveapi-client";

  buildInputs = with pkgs;[
    ruby
    git
    openssl
  ];

  shellHook = ''
    export GEM_HOME=$(pwd)/../../.gems
    export PATH="$GEM_HOME/bin:$PATH"
    gem install bundler
    bundle install
  '';
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
haveapi-client-0.25.0 shell.nix
haveapi-client-0.24.0 shell.nix
haveapi-client-0.23.7 shell.nix
haveapi-client-0.23.6 shell.nix
haveapi-client-0.13.3 shell.nix
haveapi-client-0.13.2 shell.nix
haveapi-client-0.13.1 shell.nix