diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-12-15 19:19:41 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-12-15 19:21:18 +0200 |
commit | 28292d8c5c600632786f58a9cbcd0358b52838ae (patch) | |
tree | 3428167835fd4dade6c8db2374e8d3005a763f6d | |
parent | 50b61ec22306181c419a3bd4c35b3c001c604994 (diff) | |
download | guix-28292d8c5c600632786f58a9cbcd0358b52838ae.tar.gz |
guix: Fix typo.
This is a follow-up to e8cbebb4769328f6ad49a4b5868f9c935e7e5372. * guix/profiles.scm (gtk-im-modules): Corectly refer to gtk+-2 package.
-rw-r--r-- | guix/profiles.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index 539fe04267..987bab4e7f 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm @@ -1121,7 +1121,7 @@ for both major versions of GTK+." (build gtk+-2 "2.10.0" #~(string-append - #$pkggtk+-2:bin "/bin/gtk-query-immodules-2.0")) + #$pkg-gtk+2:bin "/bin/gtk-query-immodules-2.0")) #t)))) (if (or gtk+ gtk+-2) (gexp->derivation "gtk-im-modules" gexp |