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
41 lines
799 B
Nix
41 lines
799 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
autoconf,
|
|
automake,
|
|
libtool,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "aacgain";
|
|
version = "2.0.0-unstable-2022-07-12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dgilman";
|
|
repo = "aacgain";
|
|
rev = "9f9ae95a20197d1072994dbd89672bba2904bdb5";
|
|
hash = "sha256-WqL9rKY4lQD7wQSZizoM3sHNzLIG0E9xZtjw8y7fgmE=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
autoconf
|
|
automake
|
|
libtool
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=narrowing";
|
|
|
|
meta = {
|
|
description = "ReplayGain for AAC files";
|
|
homepage = "https://github.com/dgilman/aacgain";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ robbinch ];
|
|
mainProgram = "aacgain";
|
|
};
|
|
}
|