summary refs log tree commit diff
path: root/pkgs/development/libraries/vid-stab/default.nix
blob: e22396f8aa39c0c1862d0faebf273674897fe05e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, cmake }:

stdenv.mkDerivation rec {
  pname = "vid-stab";
  version = "0.98b";
  
  src = fetchurl {
    url = "https://github.com/georgmartius/vid.stab/archive/release-${version}.tar.gz";
    sha256 = "09fh6xbd1f5xp3il3dpvr87skmnp2mm2hfmg4s9rvj4y8zvhn3sk";
  };

  nativeBuildInputs = [ cmake ];
  
  meta = with stdenv.lib; {
    description = "Video stabilization library";
    homepage    = "http://public.hronopik.de/vid.stab/";
    license     = licenses.gpl2;
    maintainers = with maintainers; [ codyopel ];
    platforms   = platforms.all;
  };
}