musicutil/shell.nix

8 lines
291 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-04 13:54:10 +00:00
(py: with py; [ py.mutagen (fold-to-ascii py) py.autopep8 ]);
2022-02-04 13:32:22 +00:00
2022-02-04 16:19:11 +00:00
in pkgs.mkShell { packages = with pkgs; [ my_python ffmpeg fd ]; }