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

47 lines
1,014 B
Nix
Raw Normal View History

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