diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/default.nix b/default.nix deleted file mode 100644 index 8ecdd88..0000000 --- a/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -with import <nixpkgs> {}; -# nix-shell --pure . -stdenv.mkDerivation rec { - name = "Reaktor-${version}"; - version = "0.2.6"; - buildInputs = with pkgs;[ - python34 - python34Packages.docopt - python34Packages.virtualenv - ]; - - shellHook ='' - [ ! -d venv ] && virtualenv --python=python3.4 venv - . venv/bin/activate - '' ; -} |