summary refs log tree commit diff
path: root/pkgs/development/libraries/polkit-qt-1/default.nix
blob: 13bc992d0263b8cf95e6552b20201575e6548143 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, cmake, qt4, pkgconfig, polkit, automoc4, glib }:

stdenv.mkDerivation rec {
  name = "polkit-qt-1-0.103.0";

  src = fetchurl {
    url = "mirror://kde/stable/apps/KDE4.x/admin/${name}.tar.bz2";
    sha256 = "0k17sb70ywk94dmncnkyig03sg1hcfbhi5wlc77xf3rxirmmccif";
  };

  patches = [ ./polkit-install.patch ];

  nativeBuildInputs = [ cmake automoc4 ];

  propagatedBuildInputs = [ polkit glib qt4 ];

  meta = {
    description = "A Qt wrapper around PolKit";
  };
}