Sha256: 1e19e7ce3b1a35604f2fdb80d528a39bcda1aee166f0307e9e720461432627e5

Contents?: true

Size: 328 Bytes

Versions: 10

Compression:

Stored size: 328 Bytes

Contents

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

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

  buildInputs = with pkgs;[
    ruby_3_2
    git
    openssl
  ];

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
haveapi-client-0.23.5 shell.nix
haveapi-client-0.23.4 shell.nix
haveapi-client-0.23.3 shell.nix
haveapi-client-0.23.2 shell.nix
haveapi-client-0.23.1 shell.nix
haveapi-client-0.23.0 shell.nix
haveapi-client-0.22.1 shell.nix
haveapi-client-0.22.0 shell.nix
haveapi-client-0.21.1 shell.nix
haveapi-client-0.21.0 shell.nix