1{ stdenv, fetchurl, autoconf, cairo, opencv, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "frei0r-plugins-${version}";
5 version = "1.4";
6
7 src = fetchurl {
8 url = "https://files.dyne.org/frei0r/releases/${name}.tar.gz";
9 sha256 = "0mxyhdp1p1a3ga8170ijygb870zwbww1dgp3kdr1nd4zvsmzqw44";
10 };
11
12 buildInputs = [ autoconf cairo opencv pkgconfig ];
13
14 meta = with stdenv.lib; {
15 homepage = http://frei0r.dyne.org;
16 description = "Minimalist, cross-platform, shared video plugins";
17 license = licenses.gpl2;
18 maintainers = [ maintainers.goibhniu ];
19 platforms = platforms.linux;
20
21 };
22}