tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ffado: unpin python311
Martin Weinelt
1 year ago
8ed4a0d4
5d1579d2
+15
-15
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
ffado
default.nix
+15
-15
pkgs/os-specific/linux/ffado/default.nix
···
12
12
libraw1394,
13
13
libxmlxx3,
14
14
pkg-config,
15
15
-
python311,
15
15
+
python3,
16
16
scons,
17
17
which,
18
18
withMixer ? false,
···
20
20
}:
21
21
22
22
let
23
23
-
python =
24
24
-
if withMixer then
25
25
-
python311.withPackages (
26
26
-
pkgs: with pkgs; [
27
27
-
pyqt5
28
28
-
dbus-python
29
29
-
]
30
30
-
)
31
31
-
else
32
32
-
python311;
23
23
+
python = python3.withPackages (
24
24
+
pkgs:
25
25
+
with pkgs;
26
26
+
(
27
27
+
[
28
28
+
distutils
29
29
+
]
30
30
+
++ lib.optionals withMixer [
31
31
+
pyqt5
32
32
+
dbus-python
33
33
+
]
34
34
+
)
35
35
+
);
33
36
in
34
37
stdenv.mkDerivation rec {
35
38
pname = "ffado";
···
67
70
68
71
nativeBuildInputs =
69
72
[
70
70
-
(scons.override {
71
71
-
# SConstruct script depends on distutils removed in Python 3.12
72
72
-
python3Packages = python311.pythonOnBuildForHost.pkgs;
73
73
-
})
73
73
+
scons
74
74
pkg-config
75
75
which
76
76
]