about summary refs log tree commit diff
diff options
context:
space:
mode:
authorjariji <jariji>2022-12-03 10:36:36 +0000
committerBjørn Forsman <bjorn.forsman@gmail.com>2022-12-03 11:47:15 +0100
commit61a8a98e6d557e6dd7ed0cdb54c3a3e3bbc5e25c (patch)
tree0567c64c77f71da33d4215431b1ef93fb92956c5
parent4d1b9284cf16c03752150ca009eea01df5d79d2d (diff)
downloadnixlib-61a8a98e6d557e6dd7ed0cdb54c3a3e3bbc5e25c.tar
nixlib-61a8a98e6d557e6dd7ed0cdb54c3a3e3bbc5e25c.tar.gz
nixlib-61a8a98e6d557e6dd7ed0cdb54c3a3e3bbc5e25c.tar.bz2
nixlib-61a8a98e6d557e6dd7ed0cdb54c3a3e3bbc5e25c.tar.lz
nixlib-61a8a98e6d557e6dd7ed0cdb54c3a3e3bbc5e25c.tar.xz
nixlib-61a8a98e6d557e6dd7ed0cdb54c3a3e3bbc5e25c.tar.zst
nixlib-61a8a98e6d557e6dd7ed0cdb54c3a3e3bbc5e25c.zip
solfege: Add gdk-pixbuf dependency.
An error occurs at startup without this change.
It is in nativeBuildInputs instead of buildInputs because
the fix does not work in buildInputs.
-rw-r--r--pkgs/misc/solfege/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/misc/solfege/default.nix b/pkgs/misc/solfege/default.nix
index a40cc6fd3383..121933f69e9c 100644
--- a/pkgs/misc/solfege/default.nix
+++ b/pkgs/misc/solfege/default.nix
@@ -1,6 +1,6 @@
 { lib, fetchurl, gettext, pkg-config, texinfo, wrapGAppsHook
 , buildPythonApplication, pycairo, pygobject3
-, gobject-introspection, gtk3, librsvg
+, gdk-pixbuf, gobject-introspection, gtk3, librsvg
 , alsa-utils, timidity, mpg123, vorbis-tools, csound, lilypond
 , automake, autoconf, txt2man
 }:
@@ -29,7 +29,7 @@ buildPythonApplication rec {
   nativeBuildInputs = [
     automake
     autoconf
-
+    gdk-pixbuf
     gettext
     pkg-config
     texinfo