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

29 lines
727 B
Nix
Raw Normal View History

{ stdenv, fetchurl, SDL, eigen, epoxy, fftw, gtest, pkgconfig }:
stdenv.mkDerivation rec {
name = "movit-${version}";
2017-08-04 16:35:44 +00:00
version = "1.5.1";
src = fetchurl {
url = "https://movit.sesse.net/${name}.tar.gz";
2017-08-04 16:35:44 +00:00
sha256 = "1259iq2ixiprk4mn7ypapinbg2w1sjq1aivzzbbch9i23kcfsd44";
};
2016-10-02 17:22:29 +00:00
outputs = [ "out" "dev" ];
GTEST_DIR = "${gtest}";
propagatedBuildInputs = [ eigen epoxy ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ SDL fftw gtest ];
meta = with stdenv.lib; {
description = "High-performance, high-quality video filters for the GPU";
2018-05-01 03:03:23 +00:00
homepage = https://movit.sesse.net;
license = licenses.gpl2Plus;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}