Skip to content

Commit

Permalink
adding default.nix to recreate development environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
moaxcp committed Oct 29, 2017
1 parent f8d5225 commit ecddf30
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions default.nix
@@ -0,0 +1,13 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "graph-dsl-env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
git
gitAndTools.gitflow
jetbrains.idea-community
openjdk
groovy
gradle
];
}

0 comments on commit ecddf30

Please sign in to comment.