diff options
author | lassulus <lassulus@lassul.us> | 2018-09-16 13:51:46 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2018-09-16 13:51:46 +0200 |
commit | 04bc3ffcf11a672f13c0c8f502d664e16c2a085c (patch) | |
tree | a480d3997f54b015c39c016ef2833d47bfcf1e1d /default.nix | |
parent | b7ca1df32161008623115c182bd13fdf98cb0ea9 (diff) |
cleanup .nix files
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 - '' ; -} |