1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/desktops/deepin/deepin-menu/default.nix

48 lines
1,014 B
Nix
Raw Normal View History

2018-09-04 02:45:51 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, qmake, dtkcore, dtkwidget,
2018-10-30 22:17:45 +00:00
qt5integration, deepin }:
2018-09-04 02:45:51 +01:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
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;
2018-10-30 22:17:45 +00:00
passthru.updateScript = deepin.updateScript { inherit name; };
2018-09-04 02:45:51 +01: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 ];
};
}