mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
49c63e498c
These empty inherits were accidentally introduced by https://github.com/NixOS/nixpkgs/pull/66585
64 lines
1.6 KiB
Nix
64 lines
1.6 KiB
Nix
{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qtbase, udisks2-qt5, utillinux,
|
|
dtkcore, deepin }:
|
|
|
|
mkDerivation rec {
|
|
pname = "deepin-anything";
|
|
version = "5.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1kvyffrii4b012f6ld1ih14qrn7gg5cxbdpbkac0wxb22hnz0azm";
|
|
};
|
|
|
|
outputs = [ "out" "modsrc" ];
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
deepin.setupHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dtkcore
|
|
qtbase
|
|
udisks2-qt5
|
|
utillinux
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
"DEB_HOST_MULTIARCH="
|
|
"PREFIX=${placeholder "out"}"
|
|
];
|
|
|
|
postPatch = ''
|
|
searchHardCodedPaths # for debugging
|
|
fixPath $modsrc /usr/src Makefile
|
|
fixPath $out /usr Makefile
|
|
fixPath $out /usr server/tool/tool.pro
|
|
fixPath $out /etc server/tool/tool.pro
|
|
fixPath $out /usr/bin \
|
|
server/tool/deepin-anything-tool.service \
|
|
server/tool/com.deepin.anything.service \
|
|
server/monitor/deepin-anything-monitor.service
|
|
sed -e 's,/lib/systemd,$$PREFIX/lib/systemd,' -i server/monitor/src/src.pro server/tool/tool.pro
|
|
'';
|
|
|
|
postFixup = ''
|
|
searchHardCodedPaths $out # for debugging
|
|
searchHardCodedPaths $modsrc # for debugging
|
|
'';
|
|
|
|
passthru.updateScript = deepin.updateScript { name = "${pname}-${version}"; };
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Deepin file search tool";
|
|
homepage = https://github.com/linuxdeepin/deepin-anything;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|