blob: cd7a01214c6a2902d83589e8d41f76068a15da6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Env to update Gemfile.lock / gemset.nix
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
ruby.devEnv
git
sqlite
libpcap
postgresql
libxml2
libxslt
pkgconfig
bundix
];
}
|