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

48 lines
1,014 B
Nix
Raw Normal View History

2018-09-04 03:45:51 +02:00
{ stdenv, fetchFromGitHub, pkgconfig, qmake, dtkcore, dtkwidget,
2018-10-30 23:17:45 +01:00
qt5integration, deepin }:
2018-09-04 03:45:51 +02:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "deepin-menu";
2019-05-04 13:41:59 +02:00
version = "3.4.6";
2018-09-04 03:45:51 +02:00
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
2019-05-04 13:41:59 +02:00
sha256 = "1gxf3slqx1s15bjrds29sas7ah6kp8c4pjvzwipncyx6qfgczj2a";
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;
2018-10-30 23:17:45 +01:00
passthru.updateScript = deepin.updateScript { inherit name; };
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 ];
};
}