3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/deepin/deepin-image-viewer/default.nix

67 lines
1.4 KiB
Nix
Raw Normal View History

2020-05-03 20:52:19 +01:00
{ stdenv
, mkDerivation
, fetchFromGitHub
, pkgconfig
, qmake
, qttools
, qtsvg
, qtx11extras
, dtkcore
, dtkwidget
, qt5integration
, freeimage
, libraw
, libexif
, deepin
2018-09-10 05:47:41 +01:00
}:
mkDerivation rec {
2018-09-10 05:47:41 +01:00
pname = "deepin-image-viewer";
version = "5.0.0";
2018-09-10 05:47:41 +01:00
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
sha256 = "01524hfdy3wvdf07n9b3qb8jdpxzg2hwjpl4gxvr68qws5nbnb3c";
2018-09-10 05:47:41 +01:00
};
nativeBuildInputs = [
pkgconfig
qmake
qttools
deepin.setupHook
2018-09-10 05:47:41 +01:00
];
buildInputs = [
qtsvg
qtx11extras
dtkcore
dtkwidget
qt5integration
freeimage
libraw
libexif
];
postPatch = ''
searchHardCodedPaths
patchShebangs viewer/generate_translations.sh
fixPath $out /usr viewer/com.deepin.ImageViewer.service
2018-09-10 05:47:41 +01:00
sed -i qimage-plugins/freeimage/freeimage.pro \
qimage-plugins/libraw/libraw.pro \
-e "s,\$\$\[QT_INSTALL_PLUGINS\],$out/$qtPluginPrefix,"
'';
passthru.updateScript = deepin.updateScript { inherit pname version src; };
2018-10-30 22:17:45 +00:00
2018-09-10 05:47:41 +01:00
meta = with stdenv.lib; {
description = "Image Viewer for Deepin Desktop Environment";
homepage = "https://github.com/linuxdeepin/deepin-image-viewer";
2018-09-10 05:47:41 +01:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
badPlatforms = [ "aarch64-linux" ]; # See https://github.com/NixOS/nixpkgs/pull/46463#issuecomment-420274189
2018-09-10 05:47:41 +01:00
maintainers = with maintainers; [ romildo ];
};
}