added default.nix

This commit is contained in:
Anton Lydike 2020-08-03 22:01:37 +02:00
parent ac69e0c48d
commit e02878f0d7

10
default.nix Normal file
View File

@ -0,0 +1,10 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "music-env";
buildInputs = [
openjdk11
jetbrains.idea-ultimate
gradle
];
}