tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gst-plugins-viperfx: init at unstable-2020-09-20
rewine
3 years ago
a91c02d3
02100048
+43
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
gstreamer
default.nix
viperfx
default.nix
+2
pkgs/development/libraries/gstreamer/default.nix
···
13
13
14
14
gst-plugins-ugly = callPackage ./ugly { inherit CoreFoundation DiskArbitration IOKit; };
15
15
16
16
+
gst-plugins-viperfx = callPackage ./viperfx { };
17
17
+
16
18
gst-rtsp-server = callPackage ./rtsp-server { };
17
19
18
20
gst-libav = callPackage ./libav { };
+41
pkgs/development/libraries/gstreamer/viperfx/default.nix
···
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, pkg-config
5
5
+
, wrapGAppsHook
6
6
+
, gst_all_1
7
7
+
, cmake
8
8
+
}:
9
9
+
stdenv.mkDerivation rec {
10
10
+
pname = "gst-plugins-viperfx";
11
11
+
version = "unstable-2020-9-20";
12
12
+
13
13
+
src = fetchFromGitHub {
14
14
+
owner = "Audio4Linux";
15
15
+
repo = "gst-plugin-viperfx";
16
16
+
rev = "a5c1b03dfe1ab0822b717a5f9392e9f1237fdba0";
17
17
+
sha256 = "sha256-0so4jV56nl3tZHuZpvtyMrpOZ4tNJ59Pyj6zbV5bJ5Y=";
18
18
+
};
19
19
+
20
20
+
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
21
21
+
22
22
+
propagatedBuildInputs = [
23
23
+
gst_all_1.gstreamer
24
24
+
gst_all_1.gst-plugins-base
25
25
+
];
26
26
+
27
27
+
installPhase = ''
28
28
+
runHook preInstall
29
29
+
install -D libgstviperfx.so $out/lib/gstreamer-1.0/libgstviperfx.so
30
30
+
install -D $src/COPYING $out/share/licenses/gst-plugins-viperfx/LICENSE
31
31
+
runHook postInstall
32
32
+
'';
33
33
+
34
34
+
meta = with lib; {
35
35
+
description = "ViPER FX core wrapper plug-in for GStreamer1";
36
36
+
homepage = "https://github.com/Audio4Linux/gst-plugin-viperfx";
37
37
+
license = licenses.unfreeRedistributable;
38
38
+
platforms = [ "x86_64-linux" ];
39
39
+
maintainers = with maintainers; [ rewine ];
40
40
+
};
41
41
+
}