summary refs log tree commit diff
path: root/pkgs/development/libraries/polkit-qt-1/qt-5.nix
blob: f6cbf7e972b3392b67e0b4daefae79531807a0ac (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
{ stdenv, fetchurl, cmake, pkgconfig, polkit, glib, qtbase }:

with stdenv.lib;

stdenv.mkDerivation {
  name = "polkit-qt-1-qt5-0.112.0";

  outputs = [ "out" "dev" ];

  src = fetchurl {
    url = "mirror://kde/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2";
    sha256 = "1ip78x20hjqvm08kxhp6gb8hf6k5n6sxyx6kk2yvvq53djzh7yv7";
  };

  nativeBuildInputs = [ cmake pkgconfig ];

  propagatedBuildInputs = [ polkit glib qtbase ];

  postFixup = ''
    # Fix library location in CMake module
    sed -i "$dev/lib/cmake/PolkitQt5-1/PolkitQt5-1Config.cmake" \
        -e "s,\\(set_and_check.POLKITQT-1_LIB_DIR\\).*$,\\1 \"''${!outputLib}/lib\"),"
  '';

  meta = {
    description = "A Qt wrapper around PolKit";
    maintainers = with stdenv.lib.maintainers; [ ttuegel ];
    platforms = with stdenv.lib.platforms; linux;
  };
}