mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 12:22:37 +03:00
enblend-enfuse: 4.1.5 -> 4.2; maintain
Removed dependency on libxmi (unneeded since 4.1.5). Added new (since 4.2) dependency on tetex (for `pdflatex`). Changes: http://hg.code.sf.net/p/enblend/code/file/a7a247e1e64b/NEWS
This commit is contained in:
parent
c11fed27a9
commit
caa395a560
@ -1,26 +1,30 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl
|
||||||
, boost, freeglut, glew, gsl, lcms2, libpng, libtiff, libxmi, mesa, vigra
|
, boost, freeglut, glew, gsl, lcms2, libpng, libtiff, mesa, vigra
|
||||||
, help2man, pkgconfig, perl }:
|
, help2man, pkgconfig, perl, tetex }:
|
||||||
|
|
||||||
let version = "4.1.5"; in
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "enblend-enfuse-${version}";
|
name = "enblend-enfuse-${version}";
|
||||||
|
version = "4.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/enblend/${name}.tar.gz";
|
url = "mirror://sourceforge/enblend/${name}.tar.gz";
|
||||||
sha256 = "08dz73jgrwfhz0kh57kz048qy1c6a35ckqn9xs5rajm449vnw0pg";
|
sha256 = "0j5x011ilalb47ssah50ag0a4phgh1b0wdgxdbbp1gcyjcjf60w7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ boost freeglut glew gsl lcms2 libpng libtiff libxmi mesa vigra ];
|
buildInputs = [ boost freeglut glew gsl lcms2 libpng libtiff mesa vigra ];
|
||||||
|
|
||||||
nativeBuildInputs = [ help2man perl pkgconfig ];
|
nativeBuildInputs = [ help2man perl pkgconfig tetex ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
patchShebangs src/embrace
|
||||||
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
inherit version;
|
|
||||||
homepage = http://enblend.sourceforge.net/;
|
homepage = http://enblend.sourceforge.net/;
|
||||||
description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline";
|
description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ nckx ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user