2021-02-05 17:12:51 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, libuchardet, pkg-config, shntool, flac
|
2024-02-29 20:09:43 +00:00
|
|
|
, opusTools, vorbis-tools, mp3gain, lame, taglib, wavpack, vorbisgain
|
|
|
|
, monkeysAudio, sox, gtk3, qtbase, qttools, wrapQtAppsHook }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "flacon";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "11.4.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "flacon";
|
|
|
|
repo = "flacon";
|
|
|
|
rev = "v${version}";
|
2024-05-15 15:35:15 +00:00
|
|
|
sha256 = "sha256-guIGSKmpinDDfTDSCmcJKWysUPdG/gw5oaKmXqgf53o=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
|
2022-06-26 10:26:21 +00:00
|
|
|
buildInputs = [ qtbase qttools libuchardet taglib ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
bin_path = lib.makeBinPath [
|
|
|
|
shntool
|
|
|
|
flac
|
|
|
|
opusTools
|
|
|
|
vorbis-tools
|
|
|
|
mp3gain
|
|
|
|
lame
|
|
|
|
wavpack
|
2024-02-29 20:09:43 +00:00
|
|
|
monkeysAudio
|
2020-06-18 07:06:33 +00:00
|
|
|
vorbisgain
|
2024-02-07 01:22:34 +00:00
|
|
|
sox
|
2020-06-18 07:06:33 +00:00
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/flacon \
|
|
|
|
--suffix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}" \
|
2020-06-18 07:06:33 +00:00
|
|
|
--prefix PATH : "$bin_path";
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-06-18 07:06:33 +00:00
|
|
|
description =
|
|
|
|
"Extracts audio tracks from an audio CD image to separate tracks";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "flacon";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://flacon.github.io/";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ snglth ];
|
|
|
|
};
|
|
|
|
}
|