qoauth: move to qmake4Hook
This commit is contained in:
parent
005dab1a7a
commit
e307c3dac2
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, qt4, qca2 }:
|
||||
{ stdenv, fetchurl, qt4, qca2, qmake4Hook }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "qoauth-1.0.1";
|
||||
|
@ -9,13 +9,13 @@ stdenv.mkDerivation {
|
|||
sha256 = "1ax0g4dd49a3a1699ams13bkhz690xfwqg8rxp1capbdpf2aa8cp";
|
||||
};
|
||||
|
||||
configurePhase = "qmake PREFIX=$prefix";
|
||||
patchPhase = "sed -e 's/lib64/lib/g' -i src/src.pro";
|
||||
|
||||
buildInputs = [ qt4 qca2 ];
|
||||
nativeBuildInputs = [ qmake4Hook ];
|
||||
|
||||
NIX_CFLAGS_COMPILE="-I${qca2}/include/QtCrypto";
|
||||
NIX_LDFLAGS = "-lqca";
|
||||
NIX_CFLAGS_COMPILE = [ "-I${qca2}/include/QtCrypto" ];
|
||||
NIX_LDFLAGS = [ "-lqca" ];
|
||||
|
||||
meta = {
|
||||
description = "Qt library for OAuth authentication";
|
||||
|
|
Loading…
Reference in New Issue