2021-02-05 17:12:51 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, libuchardet, pkg-config, shntool, flac
|
2022-06-26 10:26:21 +00:00
|
|
|
, opusTools, vorbis-tools, mp3gain, lame, taglib, wavpack, vorbisgain, gtk3, qtbase
|
2020-06-18 07:06:33 +00:00
|
|
|
, qttools, wrapQtAppsHook }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "flacon";
|
2022-06-26 10:26:21 +00:00
|
|
|
version = "9.0.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "flacon";
|
|
|
|
repo = "flacon";
|
|
|
|
rev = "v${version}";
|
2022-06-26 10:26:21 +00:00
|
|
|
sha256 = "sha256-x27tp8NnAae8y8n9Z1JMobFrgPVRADVZj2cRyul7+cM=";
|
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
|
|
|
|
vorbisgain
|
|
|
|
];
|
|
|
|
|
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";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://flacon.github.io/";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ snglth ];
|
|
|
|
};
|
|
|
|
}
|