summary refs log tree commit diff
path: root/pkgs/development/libraries/libkeyfinder/default.nix
blob: 40efafdea3da250a041da22c356936b877c9ff3a (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
33
34
35
36
37
38
39
{ stdenv, fetchFromGitHub, boost, fftw, qt5 }:

stdenv.mkDerivation rec {
  version = "0.11.0-20141105";
  name = "libkeyfinder-${version}";

  src = fetchFromGitHub {
    repo = "libKeyFinder";
    owner = "ibsh";
    rev = "592ef1f3d3ada489f80814d5ccfbc8de6029dc9d";
    sha256 = "0xcqpizwbn6wik3w7h9k1lvgrp3r3w6yyy55flvnwwwgvkry48as";
  };

  meta = with stdenv.lib; {
    description = "Musical key detection for digital audio (C++ library)";
    homepage = http://www.ibrahimshaath.co.uk/keyfinder/;
    license = with licenses; gpl3Plus;
    platforms = with platforms; linux;
    maintainers = with maintainers; [ nckx ];
  };

  buildInputs = [ fftw qt5.base ];
  propagatedBuildInputs = [ boost ];

  patchPhase = ''
    substituteInPlace LibKeyFinder.pro --replace "/usr/local" "$out"
  '';

  configurePhase = ''
    qmake
  '';

  enableParallelBuilding = true;

  postInstall = ''
    mkdir -p $out/include/keyfinder
    cp *.h $out/include/keyfinder
  '';
}