18 lines
256 B
Nix
Raw Normal View History

# Env to update Gemfile.lock / gemset.nix
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
2020-05-20 16:13:07 +10:00
bundix
git
2020-05-20 16:13:07 +10:00
libiconv
libpcap
libxml2
libxslt
2020-05-20 16:13:07 +10:00
pkg-config
postgresql
ruby.devEnv
sqlite
];
}