2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libav_0_8, libkeyfinder, qtbase, qtxmlpatterns, qmake, taglib }:
|
2015-01-25 08:25:16 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "keyfinder";
|
2017-12-01 12:16:35 +00:00
|
|
|
version = "2.2";
|
2015-01-25 08:25:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-12-01 12:16:35 +00:00
|
|
|
sha256 = "0vjszk1h8vj2qycgbffzy6k7amg75jlvlnzwaqhz9nll2pcvw0zl";
|
2015-06-04 17:16:26 +01:00
|
|
|
rev = version;
|
2015-01-25 08:25:16 +00:00
|
|
|
repo = "is_KeyFinder";
|
|
|
|
owner = "ibsh";
|
|
|
|
};
|
|
|
|
|
2017-06-02 16:40:19 +01:00
|
|
|
nativeBuildInputs = [ qmake ];
|
|
|
|
buildInputs = [ libav_0_8 libkeyfinder qtbase qtxmlpatterns taglib ];
|
2016-01-24 19:31:44 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace is_KeyFinder.pro \
|
2017-12-01 12:16:35 +00:00
|
|
|
--replace "-stdlib=libc++" "" \
|
|
|
|
--replace "\$\$[QT_INSTALL_PREFIX]" "$out"
|
2016-01-24 19:31:44 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-25 08:25:16 +00: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 02:11:51 +01:00
|
|
|
homepage = "http://www.ibrahimshaath.co.uk/keyfinder/";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2015-01-25 08:25:16 +00:00
|
|
|
};
|
|
|
|
}
|