67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, cmake
|
||
|
, makeWrapper
|
||
|
, pkgconfig
|
||
|
, wrapGAppsHook
|
||
|
, gsettings_desktop_schemas
|
||
|
|
||
|
, qtbase
|
||
|
, qttools
|
||
|
, qtsvg
|
||
|
|
||
|
, exiv2
|
||
|
, opencv
|
||
|
, libraw
|
||
|
, libtiff
|
||
|
, quazip
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
version = "3.4";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "nomacs";
|
||
|
repo = "nomacs";
|
||
|
rev = "3.4";
|
||
|
sha256 = "1l7q85dsiss0ix25niybj27zx1ssd439mwj449rxixa351cg1r2z";
|
||
|
};
|
||
|
|
||
|
name = "nomacs-${version}";
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
sourceRoot = "${name}/ImageLounge";
|
||
|
|
||
|
patches = [./fix-appdata-install.patch];
|
||
|
|
||
|
nativeBuildInputs = [cmake
|
||
|
pkgconfig
|
||
|
wrapGAppsHook];
|
||
|
|
||
|
buildInputs = [qtbase
|
||
|
qttools
|
||
|
qtsvg
|
||
|
exiv2
|
||
|
opencv
|
||
|
libraw
|
||
|
libtiff
|
||
|
quazip
|
||
|
gsettings_desktop_schemas];
|
||
|
|
||
|
|
||
|
cmakeFlags = ["-DENABLE_OPENCV=ON"
|
||
|
"-DENABLE_RAW=ON"
|
||
|
"-DENABLE_TIFF=ON"
|
||
|
"-DENABLE_QUAZIP=ON"
|
||
|
"-DUSE_SYSTEM_QUAZIP=ON"];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = https://nomacs.org;
|
||
|
description = "Qt-based image viewer";
|
||
|
maintainers = [maintainers.ahmedtd];
|
||
|
license = licenses.gpl3Plus;
|
||
|
repositories.git = https://github.com/nomacs/nomacs.git;
|
||
|
inherit (qtbase.meta) platforms;
|
||
|
};
|
||
|
}
|