nixpkgs/pkgs/desktops/deepin/deepin-menu/default.nix

55 lines
1010 B
Nix
Raw Normal View History

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
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
deepin.setupHook
2018-09-04 02:45:51 +01:00
];
buildInputs = [
dtkcore
dtkwidget
qt5integration
];
postPatch = ''
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;
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";
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 ];
};
}