summaryrefslogtreecommitdiffstats
path: root/env.nix
diff options
context:
space:
mode:
Diffstat (limited to 'env.nix')
-rw-r--r--env.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/env.nix b/env.nix
deleted file mode 100644
index ba68205..0000000
--- a/env.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-with import <nixpkgs> {}; {
- env = stdenv.mkDerivation {
- name = "playlist-tools";
- buildInputs = [
- ffmpeg
- parallel
- python35Packages.youtube-dl
- sox
- vorbisgain
- mpv
- ];
- SSL_CERT_FILE="/etc/ssl/certs/ca-bundle.crt";
- shellHook = ''
- PATH=$PATH:${./bin}
- '';
- };
-}