You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/install/nix/env.nix

13 lines
218 B
Nix

3 years ago
{ pkgs ? import <nixpkgs> { system = "x86_64-linux"; } }:
let
mongo = pkgs.callPackage ./mongo.nix {};
in pkgs.buildEnv {
name = "hydro-env";
paths = [
mongo
pkgs.nodejs
pkgs.yarn
pkgs.git
];
}