2021-01-30 18:28:16 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ffmpeg, libkeyfinder }:
|
2015-01-25 08:26:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "keyfinder-cli";
|
2021-01-30 18:28:16 +00:00
|
|
|
version = "1.1.1";
|
2015-01-25 08:26:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "keyfinder-cli";
|
|
|
|
owner = "EvanPurkhiser";
|
2021-01-30 18:28:16 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1mlcygbj3gqii3cz8jd6ks1lz612i4jp0343qjg293xm39fg47ns";
|
2015-01-25 08:26:24 +00:00
|
|
|
};
|
|
|
|
|
2021-01-30 18:28:16 +00:00
|
|
|
buildInputs = [ ffmpeg libkeyfinder ];
|
2015-09-12 00:34:22 +00:00
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2015-09-12 00:34:22 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-07-15 01:12:11 +00:00
|
|
|
inherit (src.meta) homepage;
|
2015-01-25 08:26:24 +00:00
|
|
|
description = "Musical key detection for digital audio (command-line tool)";
|
|
|
|
longDescription = ''
|
|
|
|
This small utility is the automation-oriented DJ's best friend. By making
|
|
|
|
use of Ibrahim Sha'ath's high quality libKeyFinder library, it can be
|
|
|
|
used to estimate the musical key of many different audio formats.
|
|
|
|
'';
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2015-09-13 14:55:19 +00:00
|
|
|
platforms = platforms.linux;
|
2015-01-25 08:26:24 +00:00
|
|
|
};
|
|
|
|
}
|