2020-05-03 20:52:19 +01:00
|
|
|
{ stdenv
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkgconfig
|
|
|
|
, qmake
|
|
|
|
, dtkcore
|
|
|
|
, dtkwidget
|
|
|
|
, qt5integration
|
|
|
|
, deepin
|
|
|
|
}:
|
2018-09-04 02:45:51 +01:00
|
|
|
|
2019-07-22 03:53:18 +01:00
|
|
|
mkDerivation rec {
|
2018-09-04 02:45:51 +01:00
|
|
|
pname = "deepin-menu";
|
2019-06-22 13:26:34 +01:00
|
|
|
version = "3.4.8";
|
2018-09-04 02:45:51 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linuxdeepin";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-06-22 13:26:34 +01:00
|
|
|
sha256 = "09i0ybllymlj7s46pxma5py6x8nknfja4gxn5gj9kpf2c37qsqjc";
|
2018-09-04 02:45:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
qmake
|
2019-04-03 04:40:20 +01:00
|
|
|
deepin.setupHook
|
2018-09-04 02:45:51 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
dtkcore
|
|
|
|
dtkwidget
|
|
|
|
qt5integration
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
2019-04-03 04:40:20 +01:00
|
|
|
searchHardCodedPaths
|
|
|
|
fixPath $out /usr \
|
|
|
|
data/com.deepin.menu.service \
|
|
|
|
deepin-menu.desktop \
|
|
|
|
deepin-menu.pro
|
2018-09-04 02:45:51 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-05-03 21:03:55 +01:00
|
|
|
passthru.updateScript = deepin.updateScript { inherit pname version src; };
|
2018-10-30 22:17:45 +00:00
|
|
|
|
2018-09-04 02:45:51 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Deepin menu service";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/linuxdeepin/deepin-menu";
|
2018-09-04 02:45:51 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|