evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / en / enblend-enfuse / package.nix
blob26645cea6a594fe82dd4334f6aca73ae326c57c1
1 { lib, stdenv, fetchhg
2 , autoreconfHook
3 , boost
4 , libglut
5 , glew
6 , gsl
7 , lcms2
8 , libpng
9 , libtiff
10 , libGLU
11 , libGL
12 , vigra
13 , help2man
14 , pkg-config
15 , perl
16 , texliveSmall
19 stdenv.mkDerivation rec {
20   pname = "enblend-enfuse";
21   version = "unstable-2022-03-06";
23   src = fetchhg {
24     url = "http://hg.code.sf.net/p/enblend/code";
25     rev = "0f423c72e51872698fe2985ca3bd453961ffe4e0";
26     sha256 = "sha256-0gCUSdg3HR3YeIbOByEBCZh2zGlYur6DeCOzUM53fdc=";
27   };
29   buildInputs = [ boost libglut glew gsl lcms2 libpng libtiff libGLU libGL vigra ];
31   nativeBuildInputs = [ autoreconfHook help2man perl pkg-config texliveSmall ];
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.gpl2Plus;
41     platforms = with platforms; linux;
42   };