summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-12 02:35:11 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-12 02:35:11 +0200
commit24e10b0f9afff51650c00e23452ff900755ca979 (patch)
tree21e253401a8a8103930c0b480809aca9b1e99daf /pkgs/development
parenta365bbd91057f9d3acdec5989d0b526f1216b6c7 (diff)
downloadnixpkgs-24e10b0f9afff51650c00e23452ff900755ca979.tar
nixpkgs-24e10b0f9afff51650c00e23452ff900755ca979.tar.gz
nixpkgs-24e10b0f9afff51650c00e23452ff900755ca979.tar.bz2
nixpkgs-24e10b0f9afff51650c00e23452ff900755ca979.tar.lz
nixpkgs-24e10b0f9afff51650c00e23452ff900755ca979.tar.xz
nixpkgs-24e10b0f9afff51650c00e23452ff900755ca979.tar.zst
nixpkgs-24e10b0f9afff51650c00e23452ff900755ca979.zip
libkeyfinder: remove now unused version 0.11
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/libkeyfinder/0.11.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/development/libraries/libkeyfinder/0.11.nix b/pkgs/development/libraries/libkeyfinder/0.11.nix
deleted file mode 100644
index f0e75b34059..00000000000
--- a/pkgs/development/libraries/libkeyfinder/0.11.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ stdenv, fetchFromGitHub, boost, fftw, qt5 }:
-
-let version = "0.11"; in
-stdenv.mkDerivation {
-  name = "libkeyfinder-${version}";
-
-  src = fetchFromGitHub {
-    sha256 = "0674gykdi1nffvba5rv6fsp0zw02w1gkpn9grh8w983xf13ykbz9";
-    rev = "v${version}";
-    repo = "libKeyFinder";
-    owner = "ibsh";
-  };
-
-  meta = with stdenv.lib; {
-    inherit version;
-    description = "Musical key detection for digital audio (C++ library)";
-    homepage = http://www.ibrahimshaath.co.uk/keyfinder/;
-    license = 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
-  '';
-}