mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
tageditor: init at 3.3.10
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
aeab74df01
commit
ab1f4bc5c6
58
pkgs/applications/audio/tageditor/default.nix
Normal file
58
pkgs/applications/audio/tageditor/default.nix
Normal file
@ -0,0 +1,58 @@
|
||||
{ stdenv
|
||||
, pkgs
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, cmake
|
||||
|
||||
, cpp-utilities
|
||||
, qtutilities
|
||||
, mp4v2
|
||||
, libid3tag
|
||||
, qtbase
|
||||
, qttools
|
||||
, qtwebengine
|
||||
, qtx11extras
|
||||
, tagparser
|
||||
, wrapQtAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tageditor";
|
||||
version = "3.3.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "martchus";
|
||||
repo = "tageditor";
|
||||
rev = "v${version}";
|
||||
sha256 = "16cmq7dyalcwc8gx1y9acngw5imjh8ydp4prxy7qpzk4fj3kpsak";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
cmake
|
||||
wrapQtAppsHook
|
||||
];
|
||||
buildInputs = [
|
||||
mp4v2
|
||||
libid3tag
|
||||
pkg-config
|
||||
qtbase
|
||||
qttools
|
||||
qtx11extras
|
||||
qtwebengine
|
||||
cpp-utilities
|
||||
qtutilities
|
||||
tagparser
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with pkgs.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;
|
||||
};
|
||||
}
|
||||
|
@ -16809,6 +16809,8 @@ in
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon;
|
||||
};
|
||||
|
||||
tageditor = libsForQt5.callPackage ../applications/audio/tageditor { };
|
||||
|
||||
taglib = callPackage ../development/libraries/taglib { };
|
||||
|
||||
taglib_extras = callPackage ../development/libraries/taglib-extras { };
|
||||
|
Loading…
Reference in New Issue
Block a user