5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
19 lines
312 B
Nix
19 lines
312 B
Nix
# Env to update Gemfile.lock / gemset.nix
|
|
{
|
|
pkgs ? import ../../../.. { },
|
|
}:
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "env";
|
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
|
buildInputs = with pkgs; [
|
|
bundix
|
|
git
|
|
libiconv
|
|
libpcap
|
|
libxml2
|
|
libxslt
|
|
postgresql
|
|
ruby.devEnv
|
|
sqlite
|
|
];
|
|
}
|