blob: 559d5db86cba3c7e88cea55b00558907524e48f3 (
about) (
plain)
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
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
ninja,
obs-studio,
pipewire,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "obs-pipewire-audio-capture";
version = "1.2.0";
src = fetchFromGitHub {
owner = "dimtpap";
repo = pname;
rev = version;
sha256 = "sha256-nkd/AoMsEUUxQQH5CjbnPbNwAwkd1y6j2nCa1GIAFPs=";
};
nativeBuildInputs = [
cmake
ninja
pkg-config
];
buildInputs = [
obs-studio
pipewire
];
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=./lib"
"-DCMAKE_INSTALL_DATADIR=./share"
];
meta = with lib; {
description = "Audio device and application capture for OBS Studio using PipeWire";
homepage = "https://github.com/dimtpap/obs-pipewire-audio-capture";
maintainers = with maintainers; [
Elinvention
fazzi
];
license = licenses.gpl2Plus;
platforms = [
"x86_64-linux"
"i686-linux"
];
};
}
|