nixpkgs/pkgs/applications/graphics/nomacs/default.nix

74 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv
2019-08-29 23:46:27 +00:00
, mkDerivation
, fetchFromGitHub
, fetchpatch
, cmake
, pkgconfig
, qtbase
, qttools
, qtsvg
, exiv2
, opencv4
, libraw
, libtiff
, quazip
}:
2019-09-01 13:33:32 +00:00
mkDerivation rec {
pname = "nomacs";
version = "3.12";
src = fetchFromGitHub {
owner = "nomacs";
repo = "nomacs";
2017-04-03 09:04:04 +00:00
rev = version;
sha256 = "12582i5v85da7vwjxj8grj99hxg34ij5cn3b1578wspdfw1xfy1i";
};
2019-06-27 05:51:23 +00:00
patches = [
./nomacs-iostream.patch
(fetchpatch {
name = "darwin-less-restrictive-opencv.patch";
url = "https://github.com/nomacs/nomacs/commit/d182fce4bcd9a25bd15e3de065ca67849a32458c.patch";
sha256 = "0j6sviwrjn69nqf59hjn30c4j838h8az7rnlwcx8ymlb21vd9x2h";
stripLen = 1;
})
2019-06-27 05:51:23 +00:00
];
enableParallelBuilding = true;
setSourceRoot = ''
sourceRoot=$(echo */ImageLounge)
'';
nativeBuildInputs = [cmake
2019-08-29 23:46:27 +00:00
pkgconfig];
buildInputs = [qtbase
qttools
qtsvg
exiv2
opencv4
libraw
libtiff
2019-08-29 23:46:27 +00:00
quazip];
cmakeFlags = ["-DENABLE_OPENCV=ON"
"-DENABLE_RAW=ON"
"-DENABLE_TIFF=ON"
"-DENABLE_QUAZIP=ON"
2019-08-29 23:47:38 +00:00
"-DENABLE_TRANSLATIONS=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;
};
}