2020-10-18 17:19:10 +03:00
|
|
|
{ stdenv, fetchurl, fetchpatch, unzip, mpg123 }:
|
2014-12-20 18:21:42 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-10-03 19:41:06 +03:00
|
|
|
name = "mp3gain-1.6.2";
|
2014-12-20 18:21:42 +03:00
|
|
|
src = fetchurl {
|
2019-10-03 19:41:06 +03:00
|
|
|
url = "mirror://sourceforge/mp3gain/mp3gain-1_6_2-src.zip";
|
|
|
|
sha256 = "0varr6y7k8zarr56b42r0ad9g3brhn5vv3xjg1c0v19jxwr4gh2w";
|
2014-12-20 18:21:42 +03:00
|
|
|
};
|
|
|
|
|
2019-10-03 19:41:06 +03:00
|
|
|
buildInputs = [ unzip mpg123 ];
|
2014-12-20 18:21:42 +03:00
|
|
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
2020-10-18 17:19:10 +03:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "0001-fix-security-bugs.patch";
|
|
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-sound/mp3gain/files/mp3gain-1.6.2-CVE-2019-18359-plus.patch?id=36f8689f7903548f5d89827a6e7bdf70a9882cee";
|
|
|
|
sha256 = "10n53wm0xynlcxqlnaqfgamjzcpfz41q1jlg0bhw4kq1kzhs4yyw";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2014-12-20 18:21:42 +03:00
|
|
|
buildFlags = [ "OSTYPE=linux" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
2014-12-31 00:30:05 +03:00
|
|
|
install -vD mp3gain "$out/bin/mp3gain"
|
2014-12-20 18:21:42 +03:00
|
|
|
'';
|
|
|
|
|
2020-10-18 17:19:10 +03:00
|
|
|
meta = with stdenv.lib; {
|
2014-12-20 18:21:42 +03:00
|
|
|
description = "Lossless mp3 normalizer with statistical analysis";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://mp3gain.sourceforge.net/";
|
2020-10-18 17:19:10 +03:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ devhell ];
|
2014-12-20 18:21:42 +03:00
|
|
|
};
|
|
|
|
}
|