aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/movit
diff options
context:
space:
mode:
authorCillian de Róiste <cillian.deroiste@gmail.com>2014-07-27 12:17:10 +0200
committerCillian de Róiste <cillian.deroiste@gmail.com>2014-07-27 12:53:39 +0200
commitae16e892bb41039db1a1a763d0d39dac4b166ba8 (patch)
treee0aba94cb395c752ff240830f29b355b8229a8cc /pkgs/development/libraries/movit
parente7bb85e448356c3d0a526deb1a71bbe8fb4c9169 (diff)
Add movit: High-performance, high-quality video filters for the GPU
NOTE: movit expected to be able to read source files from gtest, so I also made them available. squash
Diffstat (limited to 'pkgs/development/libraries/movit')
-rw-r--r--pkgs/development/libraries/movit/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/libraries/movit/default.nix b/pkgs/development/libraries/movit/default.nix
new file mode 100644
index 000000000000..bfd474c88e71
--- /dev/null
+++ b/pkgs/development/libraries/movit/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, SDL, eigen, epoxy, fftw, gtest, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ name = "movit-${version}";
+ version = "1.1.1";
+
+ src = fetchurl {
+ url = "http://movit.sesse.net/${name}.tar.gz";
+ sha256 = "1k3qbkxapcplpsx22xh4m4ccp9fhsjfcj3pjzbcnrc51103aklag";
+ };
+
+ GTEST_DIR = "${gtest}";
+
+ propagatedBuildInputs = [ eigen epoxy ];
+
+ buildInputs = [ SDL fftw gtest pkgconfig ];
+
+ meta = with stdenv.lib; {
+ description = "High-performance, high-quality video filters for the GPU";
+ homepage = http://movits.sesse.net;
+ license = licenses.gpl2Plus;
+ maintainers = [ maintainers.goibhniu ];
+ platforms = platforms.linux;
+ };
+}