2023-07-15 17:15:38 +00:00
|
|
|
{ lib, stdenv, fetchhg
|
2022-04-27 09:35:20 +00:00
|
|
|
, autoreconfHook
|
|
|
|
, boost
|
2024-07-27 06:49:29 +00:00
|
|
|
, libglut
|
2022-04-27 09:35:20 +00:00
|
|
|
, glew
|
|
|
|
, gsl
|
|
|
|
, lcms2
|
|
|
|
, libpng
|
|
|
|
, libtiff
|
|
|
|
, libGLU
|
|
|
|
, libGL
|
|
|
|
, vigra
|
|
|
|
, help2man
|
|
|
|
, pkg-config
|
|
|
|
, perl
|
2023-11-16 04:20:00 +00:00
|
|
|
, texliveSmall
|
2022-04-27 09:35:20 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "enblend-enfuse";
|
2022-04-27 09:35:20 +00:00
|
|
|
version = "unstable-2022-03-06";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchhg {
|
|
|
|
url = "http://hg.code.sf.net/p/enblend/code";
|
|
|
|
rev = "0f423c72e51872698fe2985ca3bd453961ffe4e0";
|
2022-04-27 09:35:20 +00:00
|
|
|
sha256 = "sha256-0gCUSdg3HR3YeIbOByEBCZh2zGlYur6DeCOzUM53fdc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
buildInputs = [ boost libglut glew gsl lcms2 libpng libtiff libGLU libGL vigra ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook help2man perl pkg-config texliveSmall ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs src/embrace
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2023-02-02 18:25:31 +00:00
|
|
|
homepage = "https://enblend.sourceforge.net/";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline";
|
2024-05-15 15:35:15 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|