Skip to content

Commit 8ec043f

Browse files
committed
python3.pkgs.camset: init at 0.0.1
1 parent 666e1b3 commit 8ec043f

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
python312Packages,
3+
fetchFromGitHub,
4+
gobject-introspection,
5+
v4l-utils,
6+
wrapGAppsHook3,
7+
lib
8+
}:
9+
10+
python312Packages.buildPythonPackage rec {
11+
name = "camset";
12+
version = "0.0.1";
13+
src = fetchFromGitHub {
14+
owner = "azeam";
15+
repo = "camset";
16+
rev = "b813ba9b1d29f2d46fad268df67bf3615a324f3e";
17+
hash = "sha256-vTF3MJQi9fZZDlbEj5800H22GGWOte3+KZCpSnsSTaQ=";
18+
};
19+
20+
nativeBuildInputs = [
21+
gobject-introspection
22+
wrapGAppsHook3
23+
];
24+
25+
propagatedBuildInputs = [
26+
python312Packages.pygobject3
27+
python312Packages.opencv4
28+
v4l-utils
29+
];
30+
31+
preFixup = ''
32+
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
33+
'';
34+
35+
meta = with lib; {
36+
description = "GUI for Video4Linux adjustments of webcams";
37+
homepage = "https://github.com/azeam/camset";
38+
license = licenses.asl20;
39+
maintainers = with maintainers; [ AaronVerDow ];
40+
};
41+
}

0 commit comments

Comments
 (0)