1# Env to update Gemfile.lock / gemset.nix 2with import <nixpkgs> {}; 3stdenv.mkDerivation { 4 name = "env"; 5 nativeBuildInputs = [ pkg-config ]; 6 buildInputs = [ 7 bundix 8 git 9 libiconv 10 libpcap 11 libxml2 12 libxslt 13 postgresql 14 ruby.devEnv 15 sqlite 16 ]; 17}