libkeyfinder 0.11 -> 2.1

This commit is contained in:
Tobias Geerinckx-Rice 2015-07-15 02:37:11 +02:00
parent 94c94926f5
commit da9b997233

View File

@ -1,11 +1,11 @@
{ stdenv, fetchFromGitHub, boost, fftw, qt5 }: { stdenv, fetchFromGitHub, fftw, qt5 }:
let version = "0.11"; in let version = "2.1"; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "libkeyfinder-${version}"; name = "libkeyfinder-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
sha256 = "0674gykdi1nffvba5rv6fsp0zw02w1gkpn9grh8w983xf13ykbz9"; sha256 = "07kc0cl6kirgmpdgkgmp6r3yvyf7b1w569z01g8rfl1cig80qdc7";
rev = "v${version}"; rev = "v${version}";
repo = "libKeyFinder"; repo = "libKeyFinder";
owner = "ibsh"; owner = "ibsh";
@ -21,10 +21,11 @@ stdenv.mkDerivation {
}; };
buildInputs = [ fftw qt5.base ]; buildInputs = [ fftw qt5.base ];
propagatedBuildInputs = [ boost ];
patchPhase = '' postPatch = ''
substituteInPlace LibKeyFinder.pro --replace "/usr/local" "$out" substituteInPlace LibKeyFinder.pro \
--replace "/usr/local" "$out" \
--replace "-stdlib=libc++" ""
''; '';
configurePhase = '' configurePhase = ''
@ -35,6 +36,8 @@ stdenv.mkDerivation {
postInstall = '' postInstall = ''
mkdir -p $out/include/keyfinder mkdir -p $out/include/keyfinder
cp *.h $out/include/keyfinder install -m644 *.h $out/include/keyfinder
mkdir -p $out/lib
cp -a lib*.so* $out/lib
''; '';
} }