2021-02-04 15:21:00 +01:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, libav_0_8, libkeyfinder, qtbase, qtxmlpatterns, qmake, taglib }:
|
2015-01-25 09:25:16 +01:00
|
|
|
|
2021-02-04 15:21:00 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "keyfinder";
|
2021-02-04 15:21:00 +01:00
|
|
|
version = "2.4";
|
2015-01-25 09:25:16 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-02-04 15:21:00 +01:00
|
|
|
sha256 = "11yhdwan7bz8nn8vxr54drckyrnlxynhx5s981i475bbccg8g7ls";
|
|
|
|
rev = "530034d6fe86d185f6a68b817f8db5f552f065d7"; # tag is missing
|
2015-01-25 09:25:16 +01:00
|
|
|
repo = "is_KeyFinder";
|
|
|
|
owner = "ibsh";
|
|
|
|
};
|
|
|
|
|
2017-06-02 17:40:19 +02:00
|
|
|
nativeBuildInputs = [ qmake ];
|
|
|
|
buildInputs = [ libav_0_8 libkeyfinder qtbase qtxmlpatterns taglib ];
|
2016-01-24 20:31:44 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace is_KeyFinder.pro \
|
2017-12-01 13:16:35 +01:00
|
|
|
--replace "-stdlib=libc++" "" \
|
|
|
|
--replace "\$\$[QT_INSTALL_PREFIX]" "$out"
|
2016-01-24 20:31:44 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-12 12:50:23 +01:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-01-25 09:25:16 +01:00
|
|
|
description = "Musical key detection for digital audio (graphical UI)";
|
|
|
|
longDescription = ''
|
|
|
|
KeyFinder is an open source key detection tool, for DJs interested in
|
|
|
|
harmonic and tonal mixing. Designed primarily for electronic and dance
|
|
|
|
music, it is highly configurable and can be applied to many genres. It
|
|
|
|
supports a huge range of codecs thanks to LibAV, and writes to metadata
|
|
|
|
tags using TagLib. It's intended to be very focused: no library
|
|
|
|
management, no track suggestions, no media player. Just a fast,
|
|
|
|
efficient workflow tool.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.ibrahimshaath.co.uk/keyfinder/";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2015-11-17 21:29:29 +01:00
|
|
|
platforms = platforms.linux;
|
2015-01-25 09:25:16 +01:00
|
|
|
};
|
|
|
|
}
|