nixpkgs/pkgs/development/libraries/movit/default.nix

28 lines
698 B
Nix
Raw Normal View History

{ stdenv, fetchurl, SDL, eigen, epoxy, fftw, gtest, pkgconfig }:
stdenv.mkDerivation rec {
name = "movit-${version}";
2015-10-25 18:09:45 +00:00
version = "1.2.0";
src = fetchurl {
url = "http://movit.sesse.net/${name}.tar.gz";
2015-10-25 18:09:45 +00:00
sha256 = "0wyl5xl4pkw17pkxsdg8idqvsgm4fxapd0r4dw9wlxw250915nmf";
};
2016-10-02 17:22:29 +00:00
outputs = [ "out" "dev" ];
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";
2017-08-03 19:33:52 +00:00
homepage = http://movit.sesse.net;
license = licenses.gpl2Plus;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}