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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1014 B
Nix
Raw Normal View History

{ stdenv
2022-09-10 08:55:03 +00:00
, lib
, fetchFromGitHub
, pkg-config
, cmake
, cpp-utilities
, qtutilities
, mp4v2
, libid3tag
, qtbase
, qttools
, qtwebengine
, qtx11extras
, tagparser
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "tageditor";
2023-09-08 23:54:34 +00:00
version = "3.9.0";
src = fetchFromGitHub {
owner = "martchus";
2022-09-10 08:55:03 +00:00
repo = pname;
rev = "v${version}";
2023-09-08 23:54:34 +00:00
hash = "sha256-caki8WVnu8ELE2mXwRvT9TTTXCtMZEa0E3KVpHl05jg=";
};
nativeBuildInputs = [
pkg-config
cmake
wrapQtAppsHook
];
2022-09-10 08:55:03 +00:00
buildInputs = [
mp4v2
libid3tag
qtbase
qttools
qtx11extras
qtwebengine
cpp-utilities
qtutilities
tagparser
];
2022-09-10 08:55:03 +00:00
meta = with lib; {
homepage = "https://github.com/Martchus/tageditor";
description = "A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska";
license = licenses.gpl2;
maintainers = [ maintainers.matthiasbeyer ];
platforms = platforms.linux;
mainProgram = "tageditor";
};
}