nixpkgs/pkgs/applications/audio/aacgain/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
698 B
Nix
Raw Normal View History

2022-12-03 01:59:06 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, autoconf
, automake
, libtool
}:
stdenv.mkDerivation rec {
pname = "aacgain";
2022-12-03 01:59:06 +00:00
version = "2.0.0";
2016-02-08 15:43:12 +00:00
2022-12-03 01:59:06 +00:00
src = fetchFromGitHub {
owner = "dgilman";
repo = pname;
rev = version;
2023-12-20 14:17:52 +00:00
hash = "sha256-842+ueBSrTRs/e14d2LUd+uFi2qgJOYv+dswpC0lgIo=";
fetchSubmodules = true;
};
2022-12-03 01:59:06 +00:00
nativeBuildInputs = [
cmake
autoconf
automake
libtool
];
env.NIX_CFLAGS_COMPILE = "-Wno-error=narrowing";
meta = with lib; {
description = "ReplayGain for AAC files";
2022-12-03 01:59:06 +00:00
homepage = "https://github.com/dgilman/aacgain";
license = licenses.gpl2Plus;
platforms = platforms.unix;
2018-02-27 17:36:18 +00:00
maintainers = [ maintainers.robbinch ];
};
}