summary refs log tree commit diff
path: root/pkgs/misc/themes/qtcurve/default.nix
blob: e63f684600221fcf2c856d67ac30fc180c254d24 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ stdenv, fetchurl, cmake, gettext, pkgconfig # Build tools
, gtk2, kde_workspace, kdelibs # Toolkit dependencies
, libpthreadstubs, libXdmcp, libxcb, xlibs # X11 dependencies
}:

stdenv.mkDerivation {
  name = "qtcurve-1.8.18";
  src = fetchurl {
    url = "https://github.com/QtCurve/qtcurve/archive/1.8.18.tar.gz";
    sha256 = "19kk11hgi6md1cl0hr0pklcczbl66jczahlkf5fr8j59ljgpr6c5";
  };

  buildInputs = [
    cmake
    gettext
    gtk2
    kde_workspace
    kdelibs
    libpthreadstubs
    libXdmcp
    libxcb
    pkgconfig
    xlibs.libxshmfence
  ];

  patches = [
    ./qtcurve-1.8.18-install-paths.patch
    ./qtcurve-1.8.18-toolbar-alpha.patch
  ];

  cmakeFlags = ''
    -DENABLE_QT5=OFF
    -DQTC_QT4_ENABLE_KWIN=ON
  '';

  meta = with stdenv.lib; {
    homepage = https://github.com/QtCurve/qtcurve;
    description = "Widget styles for Qt4/KDE4 and gtk2";
    platforms = platforms.linux;
    license = licenses.lgpl21Plus;
    maintainers = [ maintainers.ttuegel ];
  };
}