uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
97
pkgs/applications/graphics/hugin/default.nix
Normal file
97
pkgs/applications/graphics/hugin/default.nix
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, cmake
|
||||
, fetchurl
|
||||
, gnumake
|
||||
, makeWrapper
|
||||
, pkg-config
|
||||
, autopanosiftc
|
||||
, boost
|
||||
, cairo
|
||||
, enblend-enfuse
|
||||
, exiv2
|
||||
, fftw
|
||||
, flann
|
||||
, gettext
|
||||
, glew
|
||||
, ilmbase
|
||||
, lcms2
|
||||
, lensfun
|
||||
, libjpeg
|
||||
, libpng
|
||||
, libtiff
|
||||
, libX11
|
||||
, libXi
|
||||
, libXmu
|
||||
, libGLU
|
||||
, libGL
|
||||
, openexr
|
||||
, panotools
|
||||
, perlPackages
|
||||
, sqlite
|
||||
, vigra
|
||||
, wxGTK
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hugin";
|
||||
version = "2021.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/hugin/hugin-${version}.tar.bz2";
|
||||
sha256 = "sha256-BHrqin+keESzTvJ8GdO2l+hJOdyx/bvrLCBGIbZu6tk=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
boost
|
||||
cairo
|
||||
exiv2
|
||||
fftw
|
||||
flann
|
||||
gettext
|
||||
glew
|
||||
ilmbase
|
||||
lcms2
|
||||
lensfun
|
||||
libjpeg
|
||||
libpng
|
||||
libtiff
|
||||
libX11
|
||||
libXi
|
||||
libXmu
|
||||
libGLU
|
||||
libGL
|
||||
openexr
|
||||
panotools
|
||||
sqlite
|
||||
vigra
|
||||
wxGTK
|
||||
zlib
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake makeWrapper pkg-config ];
|
||||
|
||||
# disable installation of the python scripting interface
|
||||
cmakeFlags = [ "-DBUILD_HSI:BOOl=OFF" ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-I${ilmbase.dev}/include/OpenEXR";
|
||||
|
||||
postInstall = ''
|
||||
for p in $out/bin/*; do
|
||||
wrapProgram "$p" \
|
||||
--suffix PATH : ${autopanosiftc}/bin \
|
||||
--suffix PATH : ${enblend-enfuse}/bin \
|
||||
--suffix PATH : ${gnumake}/bin \
|
||||
--suffix PATH : ${perlPackages.ImageExifTool}/bin
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://hugin.sourceforge.net/";
|
||||
description = "Toolkit for stitching photographs and assembling panoramas, together with an easy to use graphical front end";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ hrdinka ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue