about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/gstreamer/viperfx/default.nix
blob: 83c7d75e98c1a8b2034340322ac48616cb380aca (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
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, wrapGAppsHook
, gst_all_1
, cmake
}:
stdenv.mkDerivation rec {
  pname = "gst-plugins-viperfx";
  version = "unstable-2020-9-20";

  src = fetchFromGitHub {
    owner = "Audio4Linux";
    repo = "gst-plugin-viperfx";
    rev = "a5c1b03dfe1ab0822b717a5f9392e9f1237fdba0";
    sha256 = "sha256-0so4jV56nl3tZHuZpvtyMrpOZ4tNJ59Pyj6zbV5bJ5Y=";
  };

  nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];

  propagatedBuildInputs = [
    gst_all_1.gstreamer
    gst_all_1.gst-plugins-base
  ];

  installPhase = ''
    runHook preInstall
    install -D libgstviperfx.so $out/lib/gstreamer-1.0/libgstviperfx.so
    install -D $src/COPYING $out/share/licenses/gst-plugins-viperfx/LICENSE
    runHook postInstall
  '';

  meta = with lib; {
    description = "ViPER FX core wrapper plug-in for GStreamer1";
    homepage = "https://github.com/Audio4Linux/gst-plugin-viperfx";
    license = licenses.unfreeRedistributable;
    platforms = [ "x86_64-linux" ];
    maintainers = with maintainers; [ rewine ];
  };
}