Skip to content

Commit 3fe396d

Browse files
committedJan 18, 2018
gpodder: fix crash on startup due missing GI_TYPELIB_PATH
1 parent 38538f3 commit 3fe396d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed
 

‎pkgs/applications/audio/gpodder/default.nix

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{ stdenv, fetchFromGitHub, python3, python3Packages, intltool
22
, glibcLocales, gnome3, gtk3, wrapGAppsHook
3-
, ipodSupport ? false, libgpod
3+
, ipodSupport ? false, libgpod, gobjectIntrospection
44
}:
55

66
python3Packages.buildPythonApplication rec {
@@ -22,14 +22,11 @@ python3Packages.buildPythonApplication rec {
2222

2323
nativeBuildInputs = [
2424
intltool
25-
python3Packages.wrapPython
2625
wrapGAppsHook
2726
glibcLocales
2827
];
2928

30-
buildInputs = [
31-
python3
32-
];
29+
buildInputs = [ python3 gobjectIntrospection ];
3330

3431
checkInputs = with python3Packages; [
3532
coverage minimock

0 commit comments

Comments
 (0)
Please sign in to comment.