4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
48 lines
1.7 KiB
Nix
48 lines
1.7 KiB
Nix
{ lib, stdenv, mkDerivation, fetchurl, cmake, pkgconfig, darwin
|
|
, openexr, zlib, imagemagick, libGLU, libGL, freeglut, fftwFloat
|
|
, fftw, gsl, libexif, perl, opencv2, qtbase, netpbm
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "pfstools";
|
|
version = "2.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tgz";
|
|
sha256 = "04rlb705gmdiphcybf9dyr0d5lla2cfs3c308zz37x0vwi445six";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "man"];
|
|
|
|
cmakeFlags = [ "-DWITH_MATLAB=false" ];
|
|
|
|
preConfigure = ''
|
|
rm cmake/FindNETPBM.cmake
|
|
echo "SET(NETPBM_LIBRARY `find ${stdenv.lib.getLib netpbm} -name "*.${stdenv.hostPlatform.extensions.sharedLibrary}*" -type f`)" >> cmake/FindNETPBM.cmake
|
|
echo "SET(NETPBM_LIBRARIES `find ${stdenv.lib.getLib netpbm} -name "*.${stdenv.hostPlatform.extensions.sharedLibrary}*" -type f`)" >> cmake/FindNETPBM.cmake
|
|
echo "SET(NETPBM_INCLUDE_DIR ${stdenv.lib.getDev netpbm}/include/netpbm)" >> cmake/FindNETPBM.cmake
|
|
echo "INCLUDE(FindPackageHandleStandardArgs)" >> cmake/FindNETPBM.cmake
|
|
echo "FIND_PACKAGE_HANDLE_STANDARD_ARGS(NETPBM DEFAULT_MSG NETPBM_LIBRARY NETPBM_INCLUDE_DIR)" >> cmake/FindNETPBM.cmake
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
buildInputs = [
|
|
openexr zlib imagemagick fftwFloat
|
|
fftw gsl libexif perl opencv2 qtbase netpbm
|
|
] ++ (if stdenv.isDarwin then (with darwin.apple_sdk.frameworks; [
|
|
OpenGL GLUT
|
|
]) else [
|
|
libGLU libGL freeglut
|
|
]);
|
|
|
|
patches = [ ./threads.patch ./pfstools.patch ./pfsalign.patch ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://pfstools.sourceforge.net/";
|
|
description = "Toolkit for manipulation of HDR images";
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl2;
|
|
maintainers = [ maintainers.juliendehos ];
|
|
};
|
|
}
|