mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
enblend-enfuse: 4.2 → unstable-2022-03-06
This commit is contained in:
parent
9b2a6976a6
commit
2b730c8d5c
@ -1,26 +1,39 @@
|
||||
{ lib, stdenv, fetchurl
|
||||
, boost, freeglut, glew, gsl, lcms2, libpng, libtiff, libGLU, libGL, vigra
|
||||
, help2man, pkg-config, perl, texlive }:
|
||||
{ lib, stdenv, fetchzip
|
||||
, autoreconfHook
|
||||
, boost
|
||||
, freeglut
|
||||
, glew
|
||||
, gsl
|
||||
, lcms2
|
||||
, libpng
|
||||
, libtiff
|
||||
, libGLU
|
||||
, libGL
|
||||
, vigra
|
||||
, help2man
|
||||
, pkg-config
|
||||
, perl
|
||||
, texlive
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "enblend-enfuse";
|
||||
version = "4.2";
|
||||
version = "unstable-2022-03-06";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/enblend/${pname}-${version}.tar.gz";
|
||||
sha256 = "0j5x011ilalb47ssah50ag0a4phgh1b0wdgxdbbp1gcyjcjf60w7";
|
||||
src = fetchzip {
|
||||
url = "https://sourceforge.net/code-snapshots/hg/e/en/enblend/code/enblend-code-0f423c72e51872698fe2985ca3bd453961ffe4e0.zip";
|
||||
sha256 = "sha256-0gCUSdg3HR3YeIbOByEBCZh2zGlYur6DeCOzUM53fdc=";
|
||||
stripRoot = true;
|
||||
};
|
||||
|
||||
buildInputs = [ boost freeglut glew gsl lcms2 libpng libtiff libGLU libGL vigra ];
|
||||
|
||||
nativeBuildInputs = [ help2man perl pkg-config texlive.combined.scheme-small ];
|
||||
nativeBuildInputs = [ autoreconfHook help2man perl pkg-config texlive.combined.scheme-small ];
|
||||
|
||||
preConfigure = ''
|
||||
patchShebangs src/embrace
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://enblend.sourceforge.net/";
|
||||
description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline";
|
||||
|
Loading…
Reference in New Issue
Block a user