mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
0f84673f3d
Goodbye, and thanks for all the Nix...
39 lines
937 B
Nix
39 lines
937 B
Nix
{ stdenv, fetchFromGitHub, fftw, qtbase, qmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libkeyfinder-${version}";
|
|
version = "2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "07kc0cl6kirgmpdgkgmp6r3yvyf7b1w569z01g8rfl1cig80qdc7";
|
|
rev = "v${version}";
|
|
repo = "libKeyFinder";
|
|
owner = "ibsh";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
buildInputs = [ fftw qtbase ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace LibKeyFinder.pro \
|
|
--replace "/usr/local" "$out" \
|
|
--replace "-stdlib=libc++" ""
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/include/keyfinder
|
|
install -m644 *.h $out/include/keyfinder
|
|
mkdir -p $out/lib
|
|
cp -a lib*.so* $out/lib
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Musical key detection for digital audio (C++ library)";
|
|
homepage = http://www.ibrahimshaath.co.uk/keyfinder/;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|