9 lines
248 B
Nix
9 lines
248 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.clerie-build-support.writePythonScript {
|
|
name = "convert-flac-dir-to-mp3";
|
|
runtimePackages = ps: with ps; [ progress ];
|
|
runtimeInputs = [ pkgs.ffmpeg-headless ];
|
|
text = builtins.readFile ./convert-flac-dir-to-mp3.py;
|
|
}
|