blob: d2cd26f38bf66ecf8702867d8ec6a2aa95d7893d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{ lib
, stdenv
, fetchurl
, pkg-config
, SDL2
, fftw
, gtest
, darwin
, eigen
, libepoxy
}:
stdenv.mkDerivation rec {
pname = "movit";
version = "1.7.1";
src = fetchurl {
url = "https://movit.sesse.net/${pname}-${version}.tar.gz";
sha256 = "sha256-szBztwXwzLasSULPURUVFUB7QLtOmi3QIowcLLH7wRo=";
};
outputs = [ "out" "dev" ];
GTEST_DIR = "${gtest.src}/googletest";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
SDL2
fftw
gtest
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.OpenGL
darwin.libobjc
];
propagatedBuildInputs = [
eigen
libepoxy
];
env = lib.optionalAttrs stdenv.isDarwin {
NIX_LDFLAGS = "-framework OpenGL";
};
enableParallelBuilding = true;
meta = with lib; {
description = "High-performance, high-quality video filters for the GPU";
homepage = "https://movit.sesse.net";
license = licenses.gpl2Plus;
maintainers = [ ];
platforms = platforms.unix;
};
}
|