File tree 1 file changed +41
-0
lines changed
pkgs/development/python-modules/camset
1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments