crun: 1.8.3 -> 1.8.4
[NixPkgs.git] / pkgs / tools / graphics / enblend-enfuse / default.nix
blob4cf5970c5a6906f6d85178f0913c2c6ee9700125
1 { lib, stdenv, fetchzip
2 , autoreconfHook
3 , boost
4 , freeglut
5 , glew
6 , gsl
7 , lcms2
8 , libpng
9 , libtiff
10 , libGLU
11 , libGL
12 , vigra
13 , help2man
14 , pkg-config
15 , perl
16 , texlive
19 stdenv.mkDerivation rec {
20   pname = "enblend-enfuse";
21   version = "unstable-2022-03-06";
23   src = fetchzip {
24     url = "https://sourceforge.net/code-snapshots/hg/e/en/enblend/code/enblend-code-0f423c72e51872698fe2985ca3bd453961ffe4e0.zip";
25     sha256 = "sha256-0gCUSdg3HR3YeIbOByEBCZh2zGlYur6DeCOzUM53fdc=";
26     stripRoot = true;
27   };
29   buildInputs = [ boost freeglut glew gsl lcms2 libpng libtiff libGLU libGL vigra ];
31   nativeBuildInputs = [ autoreconfHook help2man perl pkg-config texlive.combined.scheme-small ];
33   preConfigure = ''
34     patchShebangs src/embrace
35   '';
37   meta = with lib; {
38     homepage = "https://enblend.sourceforge.net/";
39     description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline";
40     license = licenses.gpl2;
41     platforms = with platforms; linux;
42   };