summary refs log tree commit diff
path: root/pkgs/development/libraries/vid-stab
diff options
context:
space:
mode:
authorcodyopel <codyopel@gmail.com>2015-02-17 00:54:23 -0500
committercodyopel <codyopel@gmail.com>2015-02-17 00:54:23 -0500
commit534332eaf7126f048393f14ace51c213b20b4a7f (patch)
tree6ed06e1b8ce0eab8c215dcfd5ca35c59cbf594ef /pkgs/development/libraries/vid-stab
parent607cc808d89155c2e53ab8e6eb3d6069356dd570 (diff)
downloadnixpkgs-534332eaf7126f048393f14ace51c213b20b4a7f.tar
nixpkgs-534332eaf7126f048393f14ace51c213b20b4a7f.tar.gz
nixpkgs-534332eaf7126f048393f14ace51c213b20b4a7f.tar.bz2
nixpkgs-534332eaf7126f048393f14ace51c213b20b4a7f.tar.lz
nixpkgs-534332eaf7126f048393f14ace51c213b20b4a7f.tar.xz
nixpkgs-534332eaf7126f048393f14ace51c213b20b4a7f.tar.zst
nixpkgs-534332eaf7126f048393f14ace51c213b20b4a7f.zip
vid-stab: add package
Diffstat (limited to 'pkgs/development/libraries/vid-stab')
-rw-r--r--pkgs/development/libraries/vid-stab/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/vid-stab/default.nix b/pkgs/development/libraries/vid-stab/default.nix
new file mode 100644
index 00000000000..e516c94866a
--- /dev/null
+++ b/pkgs/development/libraries/vid-stab/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, cmake }:
+
+stdenv.mkDerivation rec {
+  name = "vid-stab-${version}";
+  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;
+  };
+}
+