2019-07-22 04:53:18 +02:00
|
|
|
{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, qttools, polkit-qt,
|
2018-11-15 03:00:15 +01:00
|
|
|
dtkcore, dtkwidget, dde-qt-dbus-factory, deepin }:
|
|
|
|
|
2019-07-22 04:53:18 +02:00
|
|
|
mkDerivation rec {
|
2018-11-15 03:00:15 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "dde-polkit-agent";
|
2019-06-22 14:26:32 +02:00
|
|
|
version = "0.2.10";
|
2018-11-15 03:00:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linuxdeepin";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-06-22 14:26:32 +02:00
|
|
|
sha256 = "0syg121slpd6d9xpifgcf85lg9ca0k96cl1g3rjvsmczs2d2ffgf";
|
2018-11-15 03:00:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
qmake
|
|
|
|
qttools
|
2019-01-27 02:57:04 +01:00
|
|
|
deepin.setupHook
|
2018-11-15 03:00:15 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
dde-qt-dbus-factory
|
|
|
|
dtkcore
|
|
|
|
dtkwidget
|
|
|
|
polkit-qt
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
2019-01-27 02:57:04 +01:00
|
|
|
searchHardCodedPaths
|
|
|
|
patchShebangs translate_generation.sh
|
2018-11-15 03:00:15 +01:00
|
|
|
|
2019-01-27 02:57:04 +01:00
|
|
|
fixPath $out /usr dde-polkit-agent.pro polkit-dde-authentication-agent-1.desktop
|
|
|
|
fixPath /run/current-system/sw /usr/lib/polkit-1-dde/plugins pluginmanager.cpp
|
|
|
|
'';
|
2018-11-15 03:09:32 +01:00
|
|
|
|
2019-01-27 02:57:04 +01:00
|
|
|
postFixup = ''
|
|
|
|
searchHardCodedPaths $out
|
2018-11-15 03:00:15 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.updateScript = deepin.updateScript { inherit name; };
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "PolicyKit agent for Deepin Desktop Environment";
|
|
|
|
homepage = https://github.com/linuxdeepin/dde-polkit-agent;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|