2019-12-30 13:31:55 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, libuchardet, pkgconfig
|
2018-07-17 21:11:16 +01:00
|
|
|
, shntool, flac, opusTools, vorbis-tools, mp3gain, lame, wavpack, vorbisgain
|
2017-03-05 15:38:26 +00:00
|
|
|
, gtk3
|
2019-12-30 13:31:55 +00:00
|
|
|
, qtbase, qttools, wrapQtAppsHook
|
2016-05-09 11:50:52 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "flacon";
|
2019-10-07 06:29:10 +01:00
|
|
|
version = "5.5.1";
|
2017-03-05 15:38:26 +00:00
|
|
|
|
2016-05-09 11:50:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "flacon";
|
|
|
|
repo = "flacon";
|
|
|
|
rev = "v${version}";
|
2019-10-07 06:29:10 +01:00
|
|
|
sha256 = "05pvg5xhc2azwzld08m81r4b2krqdbcbm5lmdvg2zkk67xq9pqyd";
|
2016-05-09 11:50:52 +01:00
|
|
|
};
|
|
|
|
|
2019-12-30 13:31:55 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ];
|
|
|
|
buildInputs = [ qtbase qttools libuchardet ];
|
2016-05-09 11:50:52 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/flacon \
|
2017-03-05 15:38:26 +00:00
|
|
|
--suffix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}" \
|
2018-07-17 21:11:16 +01:00
|
|
|
--prefix PATH : "${lib.makeBinPath [ shntool flac opusTools vorbis-tools
|
2017-03-05 15:38:26 +00:00
|
|
|
mp3gain lame wavpack vorbisgain ]}"
|
2016-05-09 11:50:52 +01:00
|
|
|
'';
|
|
|
|
|
2017-03-05 15:38:26 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-05-09 11:50:52 +01:00
|
|
|
description = "Extracts audio tracks from an audio CD image to separate tracks.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://flacon.github.io/";
|
2017-03-05 15:38:26 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
2019-12-28 15:17:08 +00:00
|
|
|
maintainers = with maintainers; [ snglth ];
|
2016-05-09 11:50:52 +01:00
|
|
|
};
|
|
|
|
}
|