1{ stdenv, fetchurl, cmake }:
2
3stdenv.mkDerivation rec {
4 name = "vid-stab-${version}";
5 version = "0.98b";
6
7 src = fetchurl {
8 url = "https://github.com/georgmartius/vid.stab/archive/release-${version}.tar.gz";
9 sha256 = "09fh6xbd1f5xp3il3dpvr87skmnp2mm2hfmg4s9rvj4y8zvhn3sk";
10 };
11
12 nativeBuildInputs = [ cmake ];
13
14 meta = with stdenv.lib; {
15 description = "Video stabilization library";
16 homepage = http://public.hronopik.de/vid.stab/;
17 license = licenses.gpl2;
18 maintainers = with maintainers; [ codyopel ];
19 platforms = platforms.all;
20 };
21}
22