mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
30 lines
821 B
Nix
30 lines
821 B
Nix
{ lib, stdenv, fetchurl, autoconf, cairo, opencv, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "frei0r-plugins";
|
|
version = "1.6.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://files.dyne.org/frei0r/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "0pji26fpd0dqrx1akyhqi6729s394irl73dacnyxk58ijqq4dhp0";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf pkg-config ];
|
|
buildInputs = [ cairo opencv ];
|
|
|
|
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.gpl2;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
}
|