nixpkgs/pkgs/development/libraries/frei0r/default.nix
Philipp Mildenberger e12fdc26c6
frei0r: 1.7.0 -> 1.8.0, fix/add cudaSupport (#226666)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2023-05-12 16:05:15 +02:00

47 lines
1,006 B
Nix

{ lib
, config
, stdenv
, fetchurl
, cairo
, cmake
, opencv
, pcre
, pkg-config
, cudaSupport ? config.cudaSupport or false
, cudaPackages
}:
stdenv.mkDerivation rec {
pname = "frei0r-plugins";
version = "1.8.0";
src = fetchurl {
url = "https://files.dyne.org/frei0r/releases/${pname}-${version}.tar.gz";
hash = "sha256-RaKGVcrwVyJ7RCuADKOJnpNJBRXIHiEtIZ/fSnYT9cQ=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
cairo
opencv
pcre
] ++ lib.optionals cudaSupport [
cudaPackages.cuda_cudart
cudaPackages.cuda_nvcc
];
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
for f in $out/lib/frei0r-1/*.so* ; do
ln -s $f "''${f%.*}.dylib"
done
'';
meta = with lib; {
homepage = "https://frei0r.dyne.org";
description = "Minimalist, cross-platform, shared video plugins";
license = licenses.gpl2Plus;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux ++ platforms.darwin;
};
}