2022-05-15 22:04:43 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2019-08-30 00:46:27 +01:00
|
|
|
, mkDerivation
|
2017-04-03 09:28:34 +01:00
|
|
|
, fetchFromGitHub
|
2019-11-24 23:14:51 +00:00
|
|
|
, fetchpatch
|
2017-04-03 09:28:34 +01:00
|
|
|
, cmake
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2017-04-03 09:28:34 +01:00
|
|
|
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtsvg
|
2021-08-12 21:07:05 +01:00
|
|
|
, qtimageformats
|
2017-04-03 09:28:34 +01:00
|
|
|
|
|
|
|
, exiv2
|
2019-11-24 23:14:51 +00:00
|
|
|
, opencv4
|
2017-04-03 09:28:34 +01:00
|
|
|
, libraw
|
|
|
|
, libtiff
|
|
|
|
, quazip
|
|
|
|
}:
|
|
|
|
|
2019-09-01 14:33:32 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "nomacs";
|
2020-08-26 19:34:14 +01:00
|
|
|
version = "3.17.2206";
|
2019-06-01 14:02:59 +01:00
|
|
|
|
2017-04-03 09:28:34 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nomacs";
|
|
|
|
repo = "nomacs";
|
2017-04-03 10:04:04 +01:00
|
|
|
rev = version;
|
2020-08-26 19:34:14 +01:00
|
|
|
sha256 = "1bq7bv4p7w67172y893lvpk90d6fgdpnylynbj2kn8m2hs6khya4";
|
2017-04-03 09:28:34 +01:00
|
|
|
};
|
|
|
|
|
2021-05-02 01:31:45 +01:00
|
|
|
patches = [
|
|
|
|
# Add support for Quazip 1.x.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/nomacs/nomacs/pull/576.patch";
|
|
|
|
sha256 = "11ryjvd9jbb0cqagai4a6980jfq8lrcbyw2d7z9yld1f42w9kbxm";
|
|
|
|
stripLen = 1;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-11-02 12:54:20 +00:00
|
|
|
setSourceRoot = ''
|
|
|
|
sourceRoot=$(echo */ImageLounge)
|
|
|
|
'';
|
2017-04-03 09:28:34 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [cmake
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config];
|
2017-04-03 09:28:34 +01:00
|
|
|
|
|
|
|
buildInputs = [qtbase
|
|
|
|
qttools
|
|
|
|
qtsvg
|
2021-08-12 21:07:05 +01:00
|
|
|
qtimageformats
|
2017-04-03 09:28:34 +01:00
|
|
|
exiv2
|
2019-11-24 23:14:51 +00:00
|
|
|
opencv4
|
2017-04-03 09:28:34 +01:00
|
|
|
libraw
|
|
|
|
libtiff
|
2019-08-30 00:46:27 +01:00
|
|
|
quazip];
|
2017-04-03 09:28:34 +01:00
|
|
|
|
|
|
|
cmakeFlags = ["-DENABLE_OPENCV=ON"
|
|
|
|
"-DENABLE_RAW=ON"
|
|
|
|
"-DENABLE_TIFF=ON"
|
|
|
|
"-DENABLE_QUAZIP=ON"
|
2019-08-30 00:47:38 +01:00
|
|
|
"-DENABLE_TRANSLATIONS=ON"
|
2017-04-03 09:28:34 +01:00
|
|
|
"-DUSE_SYSTEM_QUAZIP=ON"];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://nomacs.org";
|
2017-04-03 09:28:34 +01:00
|
|
|
description = "Qt-based image viewer";
|
2021-01-15 13:21:58 +00:00
|
|
|
maintainers = with lib.maintainers; [ mindavi ];
|
2017-04-03 09:28:34 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
inherit (qtbase.meta) platforms;
|
2022-05-15 22:04:43 +01:00
|
|
|
# Broken on hydra since 2020-08-15: https://hydra.nixos.org/build/125495291 (bump from 3.16 to 3.17 prerelease)
|
|
|
|
broken = stdenv.isDarwin;
|
2017-04-03 09:28:34 +01:00
|
|
|
};
|
|
|
|
}
|