musicutil/shell.nix

8 lines
276 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
(py: with py; [ py.mutagen (fold-to-ascii py) ]);
in pkgs.mkShell { packages = with pkgs; [ my_python ffmpeg ]; }