about summary refs log tree commit diff
path: root/pkgs/applications/audio/keyfinder-cli/default.nix
blob: 33adb65f5e8ac57e9d5a09964be311e6e0c4c750 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib, stdenv, fetchFromGitHub, ffmpeg, libkeyfinder }:

stdenv.mkDerivation rec {
  pname = "keyfinder-cli";
  version = "1.1.1";

  src = fetchFromGitHub {
    repo = "keyfinder-cli";
    owner = "EvanPurkhiser";
    rev = "v${version}";
    sha256 = "1mlcygbj3gqii3cz8jd6ks1lz612i4jp0343qjg293xm39fg47ns";
  };

  buildInputs = [ ffmpeg libkeyfinder ];

  makeFlags = [ "PREFIX=$(out)" ];

  enableParallelBuilding = true;

  meta = with lib; {
    inherit (src.meta) homepage;
    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.
    '';
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    mainProgram = "keyfinder-cli";
  };
}