about summary refs log tree commit diff
path: root/pkgs/development/libraries/qoauth/default.nix
blob: 48a63e412343342e0394afed133ea397aa31b868 (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
{ stdenv, fetchurl, qt4, qca2, qmake4Hook }:

stdenv.mkDerivation {
  name = "qoauth-1.0.1";

  src = fetchurl {
    url = https://github.com/ayoy/qoauth/tarball/v1.0.1;
    name = "qoauth-1.0.1.tar.gz";
    sha256 = "1ax0g4dd49a3a1699ams13bkhz690xfwqg8rxp1capbdpf2aa8cp";
  };

  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" ];

  meta = {
    description = "Qt library for OAuth authentication";
    inherit (qt4.meta) platforms;
    maintainers = [ ];
  };
}