mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
20 lines
312 B
Nix
20 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
|
|
];
|
|
}
|