48 lines
879 B
Nix
48 lines
879 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
cmake,
|
|
libebur128,
|
|
taglib,
|
|
ffmpeg,
|
|
inih,
|
|
fmt,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rsgain";
|
|
version = "3.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "complexlogic";
|
|
repo = "rsgain";
|
|
rev = "v${version}";
|
|
hash = "sha256-4LEvcuP2Eyco3iQvT6rZhbfY02Y70rW2n5PaS+rGDkQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
];
|
|
buildInputs = [
|
|
libebur128
|
|
taglib
|
|
ffmpeg
|
|
inih
|
|
fmt
|
|
zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple, but powerful ReplayGain 2.0 tagging utility";
|
|
mainProgram = "rsgain";
|
|
homepage = "https://github.com/complexlogic/rsgain";
|
|
changelog = "https://github.com/complexlogic/rsgain/blob/v${version}/CHANGELOG";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.felipeqq2 ];
|
|
};
|
|
}
|