diff options
author | Mark H Weaver <mhw@netris.org> | 2019-04-20 19:34:00 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2019-04-22 15:02:13 -0400 |
commit | 8c064d01a011f145a6d962ef6bde78247389fac2 (patch) | |
tree | b1c098db980b90028935eb3d781562153585cd5f /gnu/packages | |
parent | ab0c796b675ccfb287f2f93b63a3ac6b08d7122d (diff) | |
download | guix-8c064d01a011f145a6d962ef6bde78247389fac2.tar guix-8c064d01a011f145a6d962ef6bde78247389fac2.tar.gz |
gnu: minetest: Simplify 'freetype' input specification.
* gnu/packages/games.scm (minetest)[inputs]: Eliminate an unnecessary
use of Guile's '@' syntax to reference the 'freetype' package.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/games.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index fd22570adc..da917e2870 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1916,7 +1916,7 @@ match, cannon keep, and grave-itation pit.") `(("pkg-config" ,pkg-config))) (inputs `(("curl" ,curl) - ("freetype" ,(@ (gnu packages fontutils) freetype)) + ("freetype" ,freetype) ("gettext" ,gettext-minimal) ("gmp" ,gmp) ("irrlicht" ,irrlicht) |