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

36 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, cmake, libuchardet, pkgconfig
, shntool, flac, opusTools, vorbis-tools, mp3gain, lame, wavpack, vorbisgain
2017-03-05 15:38:26 +00:00
, gtk3
, qtbase, qttools, wrapQtAppsHook
2016-05-09 10:50:52 +00:00
}:
stdenv.mkDerivation rec {
pname = "flacon";
version = "5.5.1";
2017-03-05 15:38:26 +00:00
2016-05-09 10:50:52 +00:00
src = fetchFromGitHub {
owner = "flacon";
repo = "flacon";
rev = "v${version}";
sha256 = "05pvg5xhc2azwzld08m81r4b2krqdbcbm5lmdvg2zkk67xq9pqyd";
2016-05-09 10:50:52 +00:00
};
nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ];
buildInputs = [ qtbase qttools libuchardet ];
2016-05-09 10:50:52 +00:00
postInstall = ''
wrapProgram $out/bin/flacon \
2017-03-05 15:38:26 +00:00
--suffix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}" \
--prefix PATH : "${lib.makeBinPath [ shntool flac opusTools vorbis-tools
2017-03-05 15:38:26 +00:00
mp3gain lame wavpack vorbisgain ]}"
2016-05-09 10:50:52 +00:00
'';
2017-03-05 15:38:26 +00:00
meta = with stdenv.lib; {
2016-05-09 10:50:52 +00:00
description = "Extracts audio tracks from an audio CD image to separate tracks.";
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 10:50:52 +00:00
};
}