summary refs log blame commit diff
path: root/pkgs/development/libraries/polkit-qt-1/default.nix
blob: 0c1a0a79584b5d3ac0a8ebac45bb3605fa13cbbb (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                                                    
                               


                                                                  
                                                                    

    

                                       


                                              




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

  buildNativeInputs = [ cmake automoc4 ];

  propagatedBuildInputs = [ polkit glib qt4 ];

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