depot/third_party/nixpkgs/pkgs/applications/video/ffmpeg-normalize/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
608 B
Nix

{ lib
, buildPythonApplication
, fetchPypi
, ffmpeg
, tqdm
}:
buildPythonApplication rec {
pname = "ffmpeg-normalize";
version = "1.15.8";
src = fetchPypi {
inherit pname version;
sha256 = "01lx1ki1iglg1dz6x99ciqx5zqlbj7hvfb12ga9m68ypjm0fcphl";
};
propagatedBuildInputs = [ ffmpeg tqdm ];
checkPhase = ''
$out/bin/ffmpeg-normalize --help > /dev/null
'';
meta = with lib; {
description = "Normalize audio via ffmpeg";
homepage = "https://github.com/slhck/ffmpeg-normalize";
license = with licenses; [ mit ];
maintainers = with maintainers; [ prusnak ];
};
}