Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
879 B
Nix
49 lines
879 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
cmake,
|
|
libebur128,
|
|
taglib,
|
|
ffmpeg,
|
|
inih,
|
|
fmt,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rsgain";
|
|
version = "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "complexlogic";
|
|
repo = "rsgain";
|
|
rev = "v${version}";
|
|
hash = "sha256-dqvaPLVpNnbN2W0TOphS7QU6MDh5pxFJoUDGvkat164=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
];
|
|
buildInputs = [
|
|
libebur128
|
|
taglib
|
|
ffmpeg
|
|
inih
|
|
fmt
|
|
zlib
|
|
];
|
|
|
|
meta = {
|
|
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 = lib.licenses.bsd2;
|
|
platforms = lib.platforms.all;
|
|
maintainers = [ lib.maintainers.felipeqq2 ];
|
|
};
|
|
}
|