Skip to content

Commit

Permalink
r128gain: init at 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AluisioASG authored and FRidh committed Feb 10, 2020
1 parent 3a6751d commit 9a0e925
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/applications/audio/r128gain/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ lib, python3Packages, ffmpeg }:

python3Packages.buildPythonApplication rec {
pname = "r128gain";
version = "0.9.3";

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0dx2grryp0lj58bawx1zcq9a6b4ijz9r5qrg8h6nvm92kqlya26i";
};

propagatedBuildInputs = [ ffmpeg ]
++ (with python3Packages; [ crcmod mutagen tqdm ])
;

doCheck = false; # downloads media files for testing

meta = with lib; {
description = "Fast audio loudness scanner & tagger (ReplayGain v2 / R128)";
homepage = "https://github.com/desbma/r128gain";
license = licenses.lgpl2Plus;
maintainers = [ maintainers.AluisioASG ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25186,6 +25186,8 @@ in
pcre = pcre-cpp;
});

r128gain = callPackage ../applications/audio/r128gain { };

redis-desktop-manager = libsForQt5.callPackage ../applications/misc/redis-desktop-manager { };

robin-map = callPackage ../development/libraries/robin-map { };
Expand Down

0 comments on commit 9a0e925

Please sign in to comment.