summary refs log tree commit diff
path: root/pkgs/applications/video/devede
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2019-05-16 21:31:16 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-05-17 22:11:51 -0400
commit619492c03ecfc6cde541a680a1ac1e5250584acc (patch)
tree5ce825dffaac414f29b7a40eaaf755af4f3683e2 /pkgs/applications/video/devede
parent66c091c52c2ecd374a6ddb580b58cf7fc33a947f (diff)
downloadnixpkgs-619492c03ecfc6cde541a680a1ac1e5250584acc.tar
nixpkgs-619492c03ecfc6cde541a680a1ac1e5250584acc.tar.gz
nixpkgs-619492c03ecfc6cde541a680a1ac1e5250584acc.tar.bz2
nixpkgs-619492c03ecfc6cde541a680a1ac1e5250584acc.tar.lz
nixpkgs-619492c03ecfc6cde541a680a1ac1e5250584acc.tar.xz
nixpkgs-619492c03ecfc6cde541a680a1ac1e5250584acc.tar.zst
nixpkgs-619492c03ecfc6cde541a680a1ac1e5250584acc.zip
devede: fix runtime error
Diffstat (limited to 'pkgs/applications/video/devede')
-rw-r--r--pkgs/applications/video/devede/default.nix12
1 files changed, 11 insertions, 1 deletions
diff --git a/pkgs/applications/video/devede/default.nix b/pkgs/applications/video/devede/default.nix
index 48c5032f2da..4802d259fb2 100644
--- a/pkgs/applications/video/devede/default.nix
+++ b/pkgs/applications/video/devede/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub, python3Packages, ffmpeg, mplayer, vcdimager, cdrkit, dvdauthor
-, gtk3, gettext, wrapGAppsHook, gdk_pixbuf }:
+, gtk3, gettext, wrapGAppsHook, gdk_pixbuf, gobject-introspection }:
 
 let
   inherit (python3Packages) dbus-python buildPythonApplication pygobject3 urllib3;
@@ -15,8 +15,18 @@ in buildPythonApplication rec {
     sha256 = "0ncb8nykchrjlllbzfjpvirmfvfaps9qhilc56kvcw3nzqrnkx8q";
   };
 
+  # Temporary fix
+  # See https://github.com/NixOS/nixpkgs/issues/61578
+  # and https://github.com/NixOS/nixpkgs/issues/56943
+  strictDeps = false;
+
   nativeBuildInputs = [
     gettext wrapGAppsHook
+
+    # Temporary fix
+    # See https://github.com/NixOS/nixpkgs/issues/61578
+    # and https://github.com/NixOS/nixpkgs/issues/56943
+    gobject-introspection
   ];
 
   buildInputs = [