musicutil/shell.nix

8 lines
310 B
Nix
Raw Normal View History

2022-02-04 13:32:22 +00:00
{ pkgs ? import <nixpkgs> { } }:
let
fold-to-ascii = (py: py.callPackage ./nix-extra-deps/fold-to-ascii.nix { });
my_python = pkgs.python39.withPackages
2022-02-06 15:20:12 +00:00
(py: with py; [ py.mutagen (fold-to-ascii py) py.autopep8 py.pyyaml ]);
2022-02-04 13:32:22 +00:00
2022-02-06 15:20:12 +00:00
in pkgs.mkShell { packages = with pkgs; [ my_python ffmpeg fd r128gain ]; }