gnu: Fix common unquote typos.

It's easy to mistype ‘("foo" foo)’ as ‘("foo", foo)’ (which also works).
Fix such typos for the proper edification of our young.

* gnu/packages/android.scm: Move unquotes to their operands.
* gnu/packages/bootloaders.scm: Likewise.
* gnu/packages/build-tools.scm: Likewise.
* gnu/packages/chemistry.scm: Likewise.
* gnu/packages/compression.scm: Likewise.
* gnu/packages/connman.scm: Likewise.
* gnu/packages/django.scm: Likewise.
* gnu/packages/emulators.scm: Likewise.
* gnu/packages/engineering.scm: Likewise.
* gnu/packages/file-systems.scm: Likewise.
* gnu/packages/freedesktop.scm: Likewise.
* gnu/packages/games.scm: Likewise.
* gnu/packages/gimp.scm: Likewise.
* gnu/packages/gl.scm: Likewise.
* gnu/packages/gnome.scm: Likewise.
* gnu/packages/graphics.scm: Likewise.
* gnu/packages/haskell.scm: Likewise.
* gnu/packages/irc.scm: Likewise.
* gnu/packages/julia.scm: Likewise.
* gnu/packages/kde-frameworks.scm: Likewise.
* gnu/packages/linux.scm: Likewise.
* gnu/packages/lua.scm: Likewise.
* gnu/packages/mail.scm: Likewise.
* gnu/packages/make-bootstrap.scm: Likewise.
* gnu/packages/messaging.scm: Likewise.
* gnu/packages/music.scm: Likewise.
* gnu/packages/networking.scm: Likewise.
* gnu/packages/ocaml.scm: Likewise.
* gnu/packages/perl.scm: Likewise.
* gnu/packages/python.scm: Likewise.
* gnu/packages/python-web.scm: Likewise.
* gnu/packages/qt.scm: Likewise.
* gnu/packages/ratpoison.scm: Likewise.
* gnu/packages/sdl.scm: Likewise.
* gnu/packages/sml.scm: Likewise.
* gnu/packages/terminals.scm: Likewise.
* gnu/packages/text-editors.scm: Likewise.
* gnu/packages/video.scm: Likewise.
* gnu/packages/virtualization.scm: Likewise.
* gnu/packages/vulkan.scm: Likewise.
* gnu/packages/wget.scm: Likewise.
* gnu/packages/wine.scm: Likewise.
* gnu/packages/wm.scm: Likewise.
* gnu/packages/xdisorg.scm: Likewise.
* gnu/packages/xml.scm: Likewise.
* gnu/packages/xorg.scm: Likewise.
This commit is contained in:
Tobias Geerinckx-Rice 2018-03-16 16:50:14 +01:00
parent 9bc0591bc1
commit c695fb769c
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79
47 changed files with 163 additions and 163 deletions

View file

@ -457,7 +457,7 @@ def _FindRepo():
;; TODO: Add git-remote-persistent-https once it is available in guix ;; TODO: Add git-remote-persistent-https once it is available in guix
`(("git" ,git) `(("git" ,git)
("gnupg" ,gnupg) ("gnupg" ,gnupg)
("ssh", openssh))) ("ssh" ,openssh)))
(native-inputs (native-inputs
`(("nose" ,python2-nose))) `(("nose" ,python2-nose)))
(home-page "https://code.google.com/p/git-repo/") (home-page "https://code.google.com/p/git-repo/")

View file

@ -181,7 +181,7 @@ menu to select one of the installed operating systems.")
(synopsis "GRand Unified Boot loader (UEFI version)") (synopsis "GRand Unified Boot loader (UEFI version)")
(inputs (inputs
`(("efibootmgr" ,efibootmgr) `(("efibootmgr" ,efibootmgr)
("mtools", mtools) ("mtools" ,mtools)
,@(package-inputs grub))) ,@(package-inputs grub)))
(arguments (arguments
`(;; TODO: Tests need a UEFI firmware for qemu. There is one at `(;; TODO: Tests need a UEFI firmware for qemu. There is one at

View file

@ -81,7 +81,7 @@ makes a few sacrifices to acquire fast full and incremental build times.")
(base32 (base32
"06r8limj38mv884s5riiz6lpzw37cvhbf9jd0smzcbi7fwmv3yah")))) "06r8limj38mv884s5riiz6lpzw37cvhbf9jd0smzcbi7fwmv3yah"))))
(build-system python-build-system) (build-system python-build-system)
(inputs `(("ninja", ninja))) (inputs `(("ninja" ,ninja)))
(propagated-inputs `(("python" ,python))) (propagated-inputs `(("python" ,python)))
(home-page "https://mesonbuild.com/") (home-page "https://mesonbuild.com/")
(synopsis "Build system designed to be fast and user-friendly") (synopsis "Build system designed to be fast and user-friendly")

View file

@ -73,8 +73,8 @@ only with Python 2 and NumPy < 1.9.")
(build-system python-build-system) (build-system python-build-system)
(inputs (inputs
`(("python-matplotlib" ,(with-numpy-1.8 python2-matplotlib)) `(("python-matplotlib" ,(with-numpy-1.8 python2-matplotlib))
("python-scientific", python2-scientific) ("python-scientific" ,python2-scientific)
("netcdf", netcdf) ("netcdf" ,netcdf)
("gv" ,gv))) ("gv" ,gv)))
(propagated-inputs (propagated-inputs
`(("python-mmtk" ,python2-mmtk))) `(("python-mmtk" ,python2-mmtk)))

View file

@ -1657,7 +1657,7 @@ speed.")
(source (package-source zstd)) (source (package-source zstd))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(("googletest", googletest))) `(("googletest" ,googletest)))
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases

View file

@ -70,7 +70,7 @@
(string-append (string-append
"--with-dbusdatadir=" (assoc-ref %outputs "out") "/share")))) "--with-dbusdatadir=" (assoc-ref %outputs "out") "/share"))))
(native-inputs (native-inputs
`(("pkg-config", pkg-config) `(("pkg-config" ,pkg-config)
("python" ,python-2))) ("python" ,python-2)))
(inputs (inputs
`(("dbus" ,dbus) `(("dbus" ,dbus)
@ -84,7 +84,7 @@
;; TODO: add neard, ofono ;; TODO: add neard, ofono
("openconnect" ,openconnect) ("openconnect" ,openconnect)
("openvpn" ,openvpn) ("openvpn" ,openvpn)
("ppp", ppp) ("ppp" ,ppp)
("vpnc" ,vpnc) ("vpnc" ,vpnc)
("wpa-supplicant" ,wpa-supplicant))) ("wpa-supplicant" ,wpa-supplicant)))
(home-page "https://01.org/connman") (home-page "https://01.org/connman")

View file

@ -75,7 +75,7 @@
(zero? (system* "python" "tests/runtests.py"))))))) (zero? (system* "python" "tests/runtests.py")))))))
;; TODO: Install extras/django_bash_completion. ;; TODO: Install extras/django_bash_completion.
(native-inputs (native-inputs
`(("tzdata", tzdata-for-tests) `(("tzdata" ,tzdata-for-tests)
;; bcrypt and argon2-cffi are extra requirements not yet in guix ;; bcrypt and argon2-cffi are extra requirements not yet in guix
;;("python-argon2-cffi" ,python-argon2-cffi) ; >= 16.1.0 ;;("python-argon2-cffi" ,python-argon2-cffi) ; >= 16.1.0
;;("python-bcrypt" ,python-bcrypt) ; not py-bcrypt! ;;("python-bcrypt" ,python-bcrypt) ; not py-bcrypt!
@ -199,7 +199,7 @@ useful tools for testing Django applications and projects.")
(native-inputs (native-inputs
`(("python-django" ,python-django) `(("python-django" ,python-django)
("python-djangorestframework" ,python-djangorestframework) ("python-djangorestframework" ,python-djangorestframework)
("python-django-crispy-forms", python-django-crispy-forms) ("python-django-crispy-forms" ,python-django-crispy-forms)
("python-mock" ,python-mock))) ("python-mock" ,python-mock)))
(home-page "https://django-filter.readthedocs.io/en/latest/") (home-page "https://django-filter.readthedocs.io/en/latest/")
(synopsis "Reusable Django application to filter querysets dynamically") (synopsis "Reusable Django application to filter querysets dynamically")

View file

@ -1095,7 +1095,7 @@ emulation community. It provides highly accurate emulation.")
("sdl" ,sdl2) ("sdl" ,sdl2)
("udev" ,eudev) ("udev" ,eudev)
("vulkan-icd-loader" ,vulkan-icd-loader) ("vulkan-icd-loader" ,vulkan-icd-loader)
("wayland", wayland) ("wayland" ,wayland)
("zlib" ,zlib))) ("zlib" ,zlib)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)

View file

@ -862,7 +862,7 @@ the 'showing the effect of'-style of operation.")
(inputs (inputs
`(("boost" ,boost))) `(("boost" ,boost)))
(native-inputs (native-inputs
`(("python-2", python-2) `(("python-2" ,python-2)
("python2-cheetah" ,python2-cheetah))) ("python2-cheetah" ,python2-cheetah)))
(home-page "http://libvolk.org/") (home-page "http://libvolk.org/")
(synopsis "Vector-Optimized Library of Kernels") (synopsis "Vector-Optimized Library of Kernels")

View file

@ -236,7 +236,7 @@ All of this is accomplished without a centralized metadata server.")
(inputs (inputs
`(("curl" ,curl) `(("curl" ,curl)
("glib" ,glib) ("glib" ,glib)
("fuse", fuse))) ("fuse" ,fuse)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))
(home-page "http://curlftpfs.sourceforge.net/") (home-page "http://curlftpfs.sourceforge.net/")

View file

@ -104,7 +104,7 @@ programmer devices.")
"1g4032c81wkk37wvbg1dxcqq6mnd76y9x7f2crmzqi6z4q9jcxmj")))) "1g4032c81wkk37wvbg1dxcqq6mnd76y9x7f2crmzqi6z4q9jcxmj"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("libusb",libusb-0.1))) ; doesn't work with libusb-compat `(("libusb" ,libusb-0.1))) ; doesn't work with libusb-compat
(arguments (arguments
'(#:phases '(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases

View file

@ -357,7 +357,7 @@ of a the system to know what users are logged in, and where.")
("glib:bin" ,glib "bin"))) ("glib:bin" ,glib "bin")))
(inputs (inputs
`(("glib" ,glib) `(("glib" ,glib)
("bash-completion", bash-completion) ("bash-completion" ,bash-completion)
("polkit" ,polkit))) ("polkit" ,polkit)))
(propagated-inputs (propagated-inputs
`(("sqlite" ,sqlite))) `(("sqlite" ,sqlite)))

View file

@ -234,7 +234,7 @@ settings to tweak as well.")
("libvorbis" ,libvorbis) ("libvorbis" ,libvorbis)
("ncurses" ,ncurses) ("ncurses" ,ncurses)
("sdl2" ,sdl2) ("sdl2" ,sdl2)
("sdl2-image", sdl2-image) ("sdl2-image" ,sdl2-image)
("sdl2-ttf" ,sdl2-ttf) ("sdl2-ttf" ,sdl2-ttf)
("sdl2-mixer" ,sdl2-mixer))) ("sdl2-mixer" ,sdl2-mixer)))
(home-page "http://en.cataclysmdda.com/") (home-page "http://en.cataclysmdda.com/")
@ -2230,19 +2230,19 @@ Transport Tycoon Deluxe.")
(substitute* "cmake_install.cmake" (substitute* "cmake_install.cmake"
(("EXPECTED_HASH SHA1=b587d83de508d0b104d14c599b76f8565900fce0") (("EXPECTED_HASH SHA1=b587d83de508d0b104d14c599b76f8565900fce0")
""))))))) "")))))))
(inputs `(("curl", curl) (inputs `(("curl" ,curl)
("fontconfig", fontconfig) ("fontconfig" ,fontconfig)
("freetype", freetype) ("freetype" ,freetype)
("jansson", jansson) ("jansson" ,jansson)
("libpng", libpng) ("libpng" ,libpng)
("libzip", libzip) ("libzip" ,libzip)
("mesa", mesa) ("mesa" ,mesa)
("openssl", openssl) ("openssl" ,openssl)
("sdl2", sdl2) ("sdl2" ,sdl2)
("speexdsp", speexdsp) ("speexdsp" ,speexdsp)
("zlib", zlib))) ("zlib" ,zlib)))
(native-inputs (native-inputs
`(("pkg-config", pkg-config))) `(("pkg-config" ,pkg-config)))
(home-page "https://github.com/OpenRCT2/OpenRCT2") (home-page "https://github.com/OpenRCT2/OpenRCT2")
(synopsis "Free software re-implementation of RollerCoaster Tycoon 2") (synopsis "Free software re-implementation of RollerCoaster Tycoon 2")
(description "OpenRCT2 is a free software re-implementation of (description "OpenRCT2 is a free software re-implementation of

View file

@ -175,12 +175,12 @@ buffers.")
("libjpeg" ,libjpeg-8) ("libjpeg" ,libjpeg-8)
("atk" ,atk) ("atk" ,atk)
("gtk+" ,gtk+-2) ("gtk+" ,gtk+-2)
("exif" ,libexif) ;optional, EXIF + XMP support ("exif" ,libexif) ; optional, EXIF + XMP support
("lcms" ,lcms) ;optional, color management ("lcms" ,lcms) ; optional, color management
("librsvg" ,librsvg) ;optional, SVG support ("librsvg" ,librsvg) ; optional, SVG support
("poppler", poppler) ; optional, PDF support ("poppler" ,poppler) ; optional, PDF support
("python" ,python-2) ;optional, Python support ("python" ,python-2) ; optional, Python support
("python2-pygtk" ,python2-pygtk) ;optional, Python support ("python2-pygtk" ,python2-pygtk) ; optional, Python support
("gegl" ,gegl))) ("gegl" ,gegl)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)

View file

@ -756,7 +756,7 @@ mixed vector/bitmap output.")
("libjpeg-turbo" ,libjpeg-turbo) ("libjpeg-turbo" ,libjpeg-turbo)
("mesa" ,mesa) ("mesa" ,mesa)
("openssl" ,openssl))) ("openssl" ,openssl)))
(native-inputs `(("pkg-config", pkg-config))) (native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://www.virtualgl.org") (home-page "https://www.virtualgl.org")
(synopsis "Redirects 3D commands from an OpenGL application onto a 3D (synopsis "Redirects 3D commands from an OpenGL application onto a 3D
graphics card") graphics card")

View file

@ -273,7 +273,7 @@ features to enable users to create their discs easily and quickly.")
("gettext" ,gettext-minimal) ("gettext" ,gettext-minimal)
("itstool" ,itstool) ("itstool" ,itstool)
("intltool" ,intltool) ("intltool" ,intltool)
("cmake", cmake))) ("cmake" ,cmake)))
(home-page "https://launchpad.net/deja-dup") (home-page "https://launchpad.net/deja-dup")
(synopsis "Simple backup tool, for regular encrypted backups") (synopsis "Simple backup tool, for regular encrypted backups")
(description (description

View file

@ -435,13 +435,13 @@ visual effects work for film.")
(native-inputs (native-inputs
`(("unzip" ,unzip))) `(("unzip" ,unzip)))
(inputs (inputs
`(("giflib", giflib) `(("giflib" ,giflib)
("jasper", jasper) ("jasper" ,jasper)
("librsvg", librsvg) ("librsvg" ,librsvg)
("pth", pth) ("pth" ,pth)
("qtbase", qtbase) ("qtbase" ,qtbase)
("ffmpeg", ffmpeg) ("ffmpeg" ,ffmpeg)
("mesa", mesa))) ("mesa" ,mesa)))
(synopsis "High performance real-time graphics toolkit") (synopsis "High performance real-time graphics toolkit")
(description (description
"The OpenSceneGraph is a high performance 3D graphics toolkit "The OpenSceneGraph is a high performance 3D graphics toolkit

View file

@ -7881,7 +7881,7 @@ files in Haskell.")
(inputs (inputs
`(("ghc-mtl" ,ghc-mtl) `(("ghc-mtl" ,ghc-mtl)
("ghc-network" ,ghc-network) ("ghc-network" ,ghc-network)
("ghc-directory", ghc-directory) ("ghc-directory" ,ghc-directory)
("ghc-old-locale" ,ghc-old-locale))) ("ghc-old-locale" ,ghc-old-locale)))
(native-inputs (native-inputs
`(("ghc-hunit" ,ghc-hunit))) `(("ghc-hunit" ,ghc-hunit)))
@ -8458,7 +8458,7 @@ that are much lighter weight than IO-threads.")
(native-inputs (native-inputs
`(("ghc-hunit" ,ghc-hunit) `(("ghc-hunit" ,ghc-hunit)
("ghc-quickcheck" ,ghc-quickcheck) ("ghc-quickcheck" ,ghc-quickcheck)
("ghc-ieee754", ghc-ieee754) ("ghc-ieee754" ,ghc-ieee754)
("ghc-test-framework" ,ghc-test-framework) ("ghc-test-framework" ,ghc-test-framework)
("ghc-test-framework-hunit" ,ghc-test-framework-hunit) ("ghc-test-framework-hunit" ,ghc-test-framework-hunit)
("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2))) ("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2)))
@ -8582,7 +8582,7 @@ statically known size.")
(build-system haskell-build-system) (build-system haskell-build-system)
(inputs `(("ghc-tuple-th" ,ghc-tuple-th) (inputs `(("ghc-tuple-th" ,ghc-tuple-th)
("ghc-contravariant" ,ghc-contravariant) ("ghc-contravariant" ,ghc-contravariant)
("ghc-base-prelude",ghc-base-prelude))) ("ghc-base-prelude" ,ghc-base-prelude)))
(home-page "https://github.com/nikita-volkov/contravariant-extras") (home-page "https://github.com/nikita-volkov/contravariant-extras")
(synopsis "Extras for the @code{ghc-contravariant} Haskell package") (synopsis "Extras for the @code{ghc-contravariant} Haskell package")
(description "This Haskell package provides extras for the (description "This Haskell package provides extras for the
@ -8897,7 +8897,7 @@ and are often as efficient as hand-written folds.")
("ghc-vector-algorithms" ,ghc-vector-algorithms) ("ghc-vector-algorithms" ,ghc-vector-algorithms)
("ghc-split" ,ghc-split))) ("ghc-split" ,ghc-split)))
(native-inputs `(("ghc-hspec" ,ghc-hspec) (native-inputs `(("ghc-hspec" ,ghc-hspec)
("ghc-hunit",ghc-hunit) ("ghc-hunit" ,ghc-hunit)
("ghc-quickcheck" ,ghc-quickcheck) ("ghc-quickcheck" ,ghc-quickcheck)
("ghc-semigroups" ,ghc-semigroups) ("ghc-semigroups" ,ghc-semigroups)
("ghc-foldl" ,ghc-foldl))) ("ghc-foldl" ,ghc-foldl)))

View file

@ -100,7 +100,7 @@
("qttools" ,qttools))) ("qttools" ,qttools)))
(inputs (inputs
`(("qca" ,qca) `(("qca" ,qca)
("qtbase", qtbase) ("qtbase" ,qtbase)
("qtscript" ,qtscript) ("qtscript" ,qtscript)
("snorenotify" ,snorenotify) ("snorenotify" ,snorenotify)
("zlib" ,zlib))) ("zlib" ,zlib)))

View file

@ -157,7 +157,7 @@ common build settings used in software produced by the KDE community.")
;; TODO: Add building the super experimental QML support ;; TODO: Add building the super experimental QML support
`(("extra-cmake-modules" ,extra-cmake-modules) `(("extra-cmake-modules" ,extra-cmake-modules)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("qttools", qttools))) ("qttools" ,qttools)))
(inputs (inputs
`(("qtbase" ,qtbase))) `(("qtbase" ,qtbase)))
(arguments (arguments
@ -1186,7 +1186,7 @@ lower level classes for interaction with the X Windowing System.")
("pkg-config" ,pkg-config))) ("pkg-config" ,pkg-config)))
(propagated-inputs (propagated-inputs
;; Headers contain #include <ModemManager/ModemManager.h> ;; Headers contain #include <ModemManager/ModemManager.h>
`(("modem-manager", modem-manager))) `(("modem-manager" ,modem-manager)))
(inputs (inputs
`(("qtbase" ,qtbase))) `(("qtbase" ,qtbase)))
(arguments (arguments
@ -1284,7 +1284,7 @@ which are used in DBus communication.")
(native-inputs (native-inputs
`(("extra-cmake-modules" ,extra-cmake-modules))) `(("extra-cmake-modules" ,extra-cmake-modules)))
(inputs (inputs
`(("libdmtx", libdmtx) `(("libdmtx" ,libdmtx)
("qrencode" ,qrencode) ("qrencode" ,qrencode)
("qtbase" ,qtbase))) ;; TODO: rethink: nix propagates this ("qtbase" ,qtbase))) ;; TODO: rethink: nix propagates this
(home-page "https://api.kde.org/frameworks/prison/html/index.html") (home-page "https://api.kde.org/frameworks/prison/html/index.html")
@ -2209,7 +2209,7 @@ their settings.")
("kwidgetsaddons" ,kwidgetsaddons) ("kwidgetsaddons" ,kwidgetsaddons)
("kwindowsystem" ,kwindowsystem) ("kwindowsystem" ,kwindowsystem)
("kxmlgui" ,kxmlgui) ("kxmlgui" ,kxmlgui)
("libepoxy", libepoxy) ("libepoxy" ,libepoxy)
("qtbase" ,qtbase) ("qtbase" ,qtbase)
("qtdeclarative" ,qtdeclarative) ("qtdeclarative" ,qtdeclarative)
("solid" ,solid))) ("solid" ,solid)))
@ -3003,7 +3003,7 @@ types or handled by application specific code.")
("libgit2" ,libgit2) ("libgit2" ,libgit2)
("perl" ,perl) ("perl" ,perl)
("qtbase" ,qtbase) ("qtbase" ,qtbase)
("qtdeclarative", qtdeclarative) ("qtdeclarative" ,qtdeclarative)
("qtscript" ,qtscript) ("qtscript" ,qtscript)
("qtxmlpatterns" ,qtxmlpatterns) ("qtxmlpatterns" ,qtxmlpatterns)
("solid" ,solid) ("solid" ,solid)
@ -3071,7 +3071,7 @@ library.")
("kwidgetsaddons" ,kwidgetsaddons) ("kwidgetsaddons" ,kwidgetsaddons)
("kwindowsystem" ,kwindowsystem) ("kwindowsystem" ,kwindowsystem)
("qtbase" ,qtbase) ("qtbase" ,qtbase)
("qtspeech", qtspeech))) ("qtspeech" ,qtspeech)))
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
@ -3150,7 +3150,7 @@ the passwords on KDE work spaces.")
`(("extra-cmake-modules" ,extra-cmake-modules))) `(("extra-cmake-modules" ,extra-cmake-modules)))
(inputs (inputs
`(("attica" ,attica) `(("attica" ,attica)
("kauth", kauth) ("kauth" ,kauth)
("kcodecs" ,kcodecs) ("kcodecs" ,kcodecs)
("kcoreaddons" ,kcoreaddons) ("kcoreaddons" ,kcoreaddons)
("kglobalaccel" ,kglobalaccel) ("kglobalaccel" ,kglobalaccel)
@ -3395,7 +3395,7 @@ workspace.")
`(("dbus" ,dbus) `(("dbus" ,dbus)
("docbook-xml" ,docbook-xml-4.4) ; optional ("docbook-xml" ,docbook-xml-4.4) ; optional
("extra-cmake-modules" ,extra-cmake-modules) ("extra-cmake-modules" ,extra-cmake-modules)
("perl", perl) ("perl" ,perl)
("perl-uri" ,perl-uri) ("perl-uri" ,perl-uri)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("shared-mime-info" ,shared-mime-info) ("shared-mime-info" ,shared-mime-info)
@ -3421,7 +3421,7 @@ workspace.")
("knotifications" ,knotifications) ("knotifications" ,knotifications)
("kparts" ,kparts) ("kparts" ,kparts)
("ktextwidgets" ,ktextwidgets) ("ktextwidgets" ,ktextwidgets)
("kunitconversion", kunitconversion) ("kunitconversion" ,kunitconversion)
("kwindowsystem" ,kwindowsystem) ("kwindowsystem" ,kwindowsystem)
("qtbase" ,qtbase))) ("qtbase" ,qtbase)))
(inputs (inputs
@ -3434,9 +3434,9 @@ workspace.")
("kservice" ,kservice) ("kservice" ,kservice)
("kwidgetsaddons" ,kwidgetsaddons) ("kwidgetsaddons" ,kwidgetsaddons)
("kxmlgui" ,kxmlgui) ("kxmlgui" ,kxmlgui)
("libsm", libsm) ("libsm" ,libsm)
("networkmanager-qt", networkmanager-qt) ("networkmanager-qt" ,networkmanager-qt)
("openssl", openssl) ("openssl" ,openssl)
("qtsvg" ,qtsvg) ("qtsvg" ,qtsvg)
("qttools" ,qttools) ("qttools" ,qttools)
("qtx11extras" ,qtx11extras))) ("qtx11extras" ,qtx11extras)))
@ -3507,7 +3507,7 @@ http://community.kde.org/Frameworks/Porting_Notes should help with this.")
(build-system cmake-build-system) (build-system cmake-build-system)
(native-inputs (native-inputs
`(("extra-cmake-modules" ,extra-cmake-modules) `(("extra-cmake-modules" ,extra-cmake-modules)
("perl", perl))) ("perl" ,perl)))
(inputs (inputs
`(("giflib" ,giflib) `(("giflib" ,giflib)
("gperf" ,gperf) ("gperf" ,gperf)
@ -3521,14 +3521,14 @@ http://community.kde.org/Frameworks/Porting_Notes should help with this.")
("knotifications" ,knotifications) ("knotifications" ,knotifications)
("kparts" ,kparts) ("kparts" ,kparts)
("ktextwidgets" ,ktextwidgets) ("ktextwidgets" ,ktextwidgets)
("kwallet", kwallet) ("kwallet" ,kwallet)
("kwidgetsaddons" ,kwidgetsaddons) ("kwidgetsaddons" ,kwidgetsaddons)
("kwindowsystem" ,kwindowsystem) ("kwindowsystem" ,kwindowsystem)
("kxmlgui" ,kxmlgui) ("kxmlgui" ,kxmlgui)
("libjpeg", libjpeg) ("libjpeg" ,libjpeg)
("libpng", libpng) ("libpng" ,libpng)
("openssl", openssl) ("openssl" ,openssl)
("phonon", phonon) ("phonon" ,phonon)
("qtbase" ,qtbase) ("qtbase" ,qtbase)
("qtx11extras" ,qtx11extras) ("qtx11extras" ,qtx11extras)
("sonnet" ,sonnet))) ("sonnet" ,sonnet)))

View file

@ -1778,9 +1778,9 @@ file system is as easy as logging into the server with an SSH client.")
(base32 (base32
"0v4si1ri6lhnq9q87gkx7fsh6lv6xz4bynknwndqncpvfp5cy1jg")))) "0v4si1ri6lhnq9q87gkx7fsh6lv6xz4bynknwndqncpvfp5cy1jg"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("fuse", fuse) (inputs `(("fuse" ,fuse)
("libarchive", libarchive))) ("libarchive" ,libarchive)))
(native-inputs `(("pkg-config", pkg-config))) (native-inputs `(("pkg-config" ,pkg-config)))
(home-page "http://www.cybernoia.de/software/archivemount") (home-page "http://www.cybernoia.de/software/archivemount")
(synopsis "Tool for mounting archive files with FUSE") (synopsis "Tool for mounting archive files with FUSE")
(description "archivemount is a FUSE-based file system for Unix variants, (description "archivemount is a FUSE-based file system for Unix variants,
@ -2034,7 +2034,7 @@ from the module-init-tools project.")
("docbook-xml" ,docbook-xml-4.2) ("docbook-xml" ,docbook-xml-4.2)
("docbook-xsl" ,docbook-xsl) ("docbook-xsl" ,docbook-xsl)
("libxml2" ,libxml2) ;for $XML_CATALOG_FILES ("libxml2" ,libxml2) ;for $XML_CATALOG_FILES
("xsltproc", libxslt))) ("xsltproc" ,libxslt)))
(inputs (inputs
;; When linked against libblkid, eudev can populate /dev/disk/by-label ;; When linked against libblkid, eudev can populate /dev/disk/by-label
;; and similar; it also installs the '60-persistent-storage.rules' file, ;; and similar; it also installs the '60-persistent-storage.rules' file,
@ -3707,7 +3707,7 @@ are exceeded.")
(inputs (inputs
`(("acl" ,acl) `(("acl" ,acl)
("libuuid" ,util-linux) ("libuuid" ,util-linux)
("lzo", lzo) ("lzo" ,lzo)
("zlib" ,zlib))) ("zlib" ,zlib)))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
@ -4137,13 +4137,13 @@ used by nftables.")
(base32 (base32
"1i1gfy8l7qyhc5vlrpp63s0n5kybmc9pi4dywiq8rmkhrrnddsla")))) "1i1gfy8l7qyhc5vlrpp63s0n5kybmc9pi4dywiq8rmkhrrnddsla"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("bison", bison) (inputs `(("bison" ,bison)
("flex", flex) ("flex" ,flex)
("gmp", gmp) ("gmp" ,gmp)
("libmnl", libmnl) ("libmnl" ,libmnl)
("libnftnl", libnftnl) ("libnftnl" ,libnftnl)
("readline", readline))) ("readline" ,readline)))
(native-inputs `(("pkg-config", pkg-config))) (native-inputs `(("pkg-config" ,pkg-config)))
(home-page "http://www.nftables.org") (home-page "http://www.nftables.org")
(synopsis "Userspace utility for Linux packet filtering") (synopsis "Userspace utility for Linux packet filtering")
(description "nftables is the project that aims to replace the existing (description "nftables is the project that aims to replace the existing

View file

@ -354,12 +354,12 @@ secure session between the peers.")
(inputs (inputs
`(("gobject-introspection" ,gobject-introspection) `(("gobject-introspection" ,gobject-introspection)
("glib" ,glib) ("glib" ,glib)
("pango", pango) ("pango" ,pango)
("gtk", gtk+-2) ("gtk" ,gtk+-2)
("lua" ,lua) ("lua" ,lua)
("cairo" ,cairo) ("cairo" ,cairo)
("libffi" ,libffi) ("libffi" ,libffi)
("xorg-server", xorg-server))) ("xorg-server" ,xorg-server)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)
("dbus" ,dbus))) ;tests use 'dbus-run-session' ("dbus" ,dbus))) ;tests use 'dbus-run-session'
@ -397,7 +397,7 @@ Notable examples are GTK+, GStreamer and Webkit.")
(string-append out "/share/lua/" lua-version)) (string-append out "/share/lua/" lua-version))
#t)))) #t))))
#:test-target "test")) #:test-target "test"))
(inputs `(("lua", lua))) (inputs `(("lua" ,lua)))
(synopsis "Pattern-matching library for Lua") (synopsis "Pattern-matching library for Lua")
(description (description
"LPeg is a pattern-matching library for Lua, based on Parsing Expression "LPeg is a pattern-matching library for Lua, based on Parsing Expression
@ -436,7 +436,7 @@ Grammars (PEGs).")
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'configure)))) (delete 'configure))))
(inputs `(("lua", lua))) (inputs `(("lua" ,lua)))
(home-page "https://bitop.luajit.org/index.html") (home-page "https://bitop.luajit.org/index.html")
(synopsis "Bitwise operations on numbers for Lua") (synopsis "Bitwise operations on numbers for Lua")
(description (description

View file

@ -1812,7 +1812,7 @@ in Perl.")
(patch-shebang "mb2md" (list (string-append perl "/bin"))) (patch-shebang "mb2md" (list (string-append perl "/bin")))
(chmod "mb2md" #o555)) (chmod "mb2md" #o555))
#t)))) #t))))
(native-inputs `(("gzip", gzip))) (native-inputs `(("gzip" ,gzip)))
(inputs `(("perl" ,perl) (inputs `(("perl" ,perl)
("perl-timedate" ,perl-timedate))) ("perl-timedate" ,perl-timedate)))
(home-page "http://batleth.sapienti-sat.org/projects/mb2md/") (home-page "http://batleth.sapienti-sat.org/projects/mb2md/")

View file

@ -108,7 +108,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
("gcc" ,(package (inherit gcc) ("gcc" ,(package (inherit gcc)
(outputs '("out")) ; all in one so libgcc_s is easily found (outputs '("out")) ; all in one so libgcc_s is easily found
(inputs (inputs
`(("libc",(glibc-for-bootstrap)) `(("libc" ,(glibc-for-bootstrap))
("libc:static" ,(glibc-for-bootstrap) "static") ("libc:static" ,(glibc-for-bootstrap) "static")
,@(package-inputs gcc))))) ,@(package-inputs gcc)))))
,@(fold alist-delete (%final-inputs) '("libc" "gcc"))))) ,@(fold alist-delete (%final-inputs) '("libc" "gcc")))))

View file

@ -144,9 +144,9 @@ keys, no previous conversation is compromised.")
#:configure-flags '("-DBUILD_SHARED_LIBS=on" "-DBUILD_TESTING=1"))) #:configure-flags '("-DBUILD_SHARED_LIBS=on" "-DBUILD_TESTING=1")))
(build-system cmake-build-system) (build-system cmake-build-system)
(inputs `( ;; Required for tests: (inputs `( ;; Required for tests:
("check", check) ("check" ,check)
("openssl", openssl))) ("openssl" ,openssl)))
(native-inputs `(("pkg-config", pkg-config))) (native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://github.com/WhisperSystems/libsignal-protocol-c") (home-page "https://github.com/WhisperSystems/libsignal-protocol-c")
(synopsis "Implementation of a ratcheting forward secrecy protocol") (synopsis "Implementation of a ratcheting forward secrecy protocol")
(description "libsignal-protocol-c is an implementation of a ratcheting (description "libsignal-protocol-c is an implementation of a ratcheting
@ -613,8 +613,8 @@ end-to-end encryption support; XML console.")
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))))) (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
(inputs (inputs
`(("libgee" ,libgee) `(("libgee" ,libgee)
("libsignal-protocol-c", libsignal-protocol-c) ("libsignal-protocol-c" ,libsignal-protocol-c)
("libgcrypt", libgcrypt) ("libgcrypt" ,libgcrypt)
("libsoup" ,libsoup) ("libsoup" ,libsoup)
("sqlite" ,sqlite) ("sqlite" ,sqlite)
("gpgme" ,gpgme) ("gpgme" ,gpgme)
@ -623,7 +623,7 @@ end-to-end encryption support; XML console.")
("gsettings-desktop-schemas" ,gsettings-desktop-schemas))) ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)
("libsignal-protocol-c-source", (package-source libsignal-protocol-c)) ("libsignal-protocol-c-source" ,(package-source libsignal-protocol-c))
("glib" ,glib "bin") ("glib" ,glib "bin")
("vala" ,vala) ("vala" ,vala)
("gettext" ,gettext-minimal))) ("gettext" ,gettext-minimal)))

View file

@ -399,7 +399,7 @@ many input formats and provides a customisable Vi-style user interface.")
"Clarinet in Bb.denemo")) "Clarinet in Bb.denemo"))
#t))))) #t)))))
(native-inputs (native-inputs
`(("glib:bin", glib "bin") ; for gtester `(("glib:bin" ,glib "bin") ; for gtester
("pkg-config" ,pkg-config))) ("pkg-config" ,pkg-config)))
(inputs (inputs
`(("alsa-lib" ,alsa-lib) `(("alsa-lib" ,alsa-lib)
@ -417,7 +417,7 @@ many input formats and provides a customisable Vi-style user interface.")
("libsndfile" ,libsndfile) ("libsndfile" ,libsndfile)
("libtool" ,libtool) ("libtool" ,libtool)
("libxml2" ,libxml2) ("libxml2" ,libxml2)
("lilypond", lilypond) ("lilypond" ,lilypond)
("portaudio" ,portaudio) ("portaudio" ,portaudio)
("portmidi" ,portmidi) ("portmidi" ,portmidi)
("rubberband" ,rubberband))) ("rubberband" ,rubberband)))
@ -2518,7 +2518,7 @@ websites such as Libre.fm.")
(build-system python-build-system) (build-system python-build-system)
(propagated-inputs (propagated-inputs
`(("python-requests" ,python-requests) `(("python-requests" ,python-requests)
("eyed3", eyed3) ("eyed3" ,eyed3)
("python-beautifulsoup4" ,python-beautifulsoup4) ("python-beautifulsoup4" ,python-beautifulsoup4)
("youtube-dl" ,youtube-dl))) ("youtube-dl" ,youtube-dl)))
(arguments (arguments

View file

@ -1225,11 +1225,11 @@ gone wild and are suddenly taking up your bandwidth.")
(assoc-ref %build-inputs "ncurses") "/lib") (assoc-ref %build-inputs "ncurses") "/lib")
(string-append "--with-tlslib=GnuTLS")))) (string-append "--with-tlslib=GnuTLS"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("gnutls", gnutls) (inputs `(("gnutls" ,gnutls)
("libxml2", libxml2) ("libxml2" ,libxml2)
("ncurses", ncurses) ("ncurses" ,ncurses)
("zlib", zlib))) ("zlib" ,zlib)))
(native-inputs `(("pkg-config", pkg-config))) (native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://github.com/nzbget/nzbget") (home-page "https://github.com/nzbget/nzbget")
(synopsis "Usenet binary file downloader") (synopsis "Usenet binary file downloader")
(description (description
@ -1455,11 +1455,11 @@ does not use SSH and requires a pre-shared symmetric key.")
(patches (patches
(search-patches "quagga-reproducible-build.patch")))) (search-patches "quagga-reproducible-build.patch"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs `(("pkg-config",pkg-config) (native-inputs `(("pkg-config" ,pkg-config)
("perl",perl) ("perl" ,perl)
("dejagnu",dejagnu))) ("dejagnu" ,dejagnu)))
(inputs `(("readline",readline) (inputs `(("readline" ,readline)
("c-ares",c-ares))) ("c-ares" ,c-ares)))
(synopsis "Routing Software Suite") (synopsis "Routing Software Suite")
(description "Quagga is a routing software suite, providing implementations (description "Quagga is a routing software suite, providing implementations
of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms. of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.

View file

@ -3755,7 +3755,7 @@ sensitive completion, colors, and more.")
(delete 'configure)))) (delete 'configure))))
(inputs (inputs
`(("topkg" ,ocaml-topkg) `(("topkg" ,ocaml-topkg)
("opam", opam))) ("opam" ,opam)))
(synopsis "Various signed and unsigned integer types for OCaml") (synopsis "Various signed and unsigned integer types for OCaml")
(description "The ocaml-integers library provides a number of 8-, 16-, 32- (description "The ocaml-integers library provides a number of 8-, 16-, 32-
and 64-bit signed and unsigned integer types, together with aliases such as and 64-bit signed and unsigned integer types, together with aliases such as
@ -3789,7 +3789,7 @@ long and size_t whose sizes depend on the host platform.")
("integers" ,ocaml-integers) ("integers" ,ocaml-integers)
("lwt" ,ocaml-lwt) ("lwt" ,ocaml-lwt)
("topkg" ,ocaml-topkg) ("topkg" ,ocaml-topkg)
("opam", opam))) ("opam" ,opam)))
(synopsis "Library for binding to C libraries using pure OCaml") (synopsis "Library for binding to C libraries using pure OCaml")
(description "Ctypes is a library for binding to C libraries using pure (description "Ctypes is a library for binding to C libraries using pure
OCaml. The primary aim is to make writing C extensions as straightforward as OCaml. The primary aim is to make writing C extensions as straightforward as
@ -3822,7 +3822,7 @@ without writing or generating any C!")
(delete 'configure)))) (delete 'configure))))
(inputs (inputs
`(("topkg" ,ocaml-topkg) `(("topkg" ,ocaml-topkg)
("opam", opam))) ("opam" ,opam)))
(native-inputs (native-inputs
`(("astring" ,ocaml-astring))) `(("astring" ,ocaml-astring)))
(synopsis "OCamlbuild plugin for C stubs") (synopsis "OCamlbuild plugin for C stubs")

View file

@ -5759,7 +5759,7 @@ most specific one) is instantiated.")
("perl-file-configdir" ,perl-file-configdir) ("perl-file-configdir" ,perl-file-configdir)
("perl-file-find-rule" ,perl-file-find-rule) ("perl-file-find-rule" ,perl-file-find-rule)
("perl-hash-merge" ,perl-hash-merge) ("perl-hash-merge" ,perl-hash-merge)
("perl-moo", perl-moo) ("perl-moo" ,perl-moo)
("perl-moox-file-configdir" ,perl-moox-file-configdir) ("perl-moox-file-configdir" ,perl-moox-file-configdir)
("perl-namespace-clean" ,perl-namespace-clean))) ("perl-namespace-clean" ,perl-namespace-clean)))
(home-page "http://search.cpan.org/dist/MooX-ConfigFromFile/") (home-page "http://search.cpan.org/dist/MooX-ConfigFromFile/")

View file

@ -823,7 +823,7 @@ internationalized messages within program source text.")
'(#:tests? #f)) ; FIXME: Tests can't find zope.event. '(#:tests? #f)) ; FIXME: Tests can't find zope.event.
(propagated-inputs (propagated-inputs
`(("python-zope-event" ,python-zope-event) `(("python-zope-event" ,python-zope-event)
("python-zope-exceptions", python-zope-exceptions) ("python-zope-exceptions" ,python-zope-exceptions)
("python-zope-interface" ,python-zope-interface))) ("python-zope-interface" ,python-zope-interface)))
(native-inputs (native-inputs
`(("python-zope-testing" ,python-zope-testing) `(("python-zope-testing" ,python-zope-testing)

View file

@ -11975,7 +11975,7 @@ library.")
"08if5yax1xn5yfp8p3765ccjmfcv9di7i4m5jckgnwvdsgznwkbj")))) "08if5yax1xn5yfp8p3765ccjmfcv9di7i4m5jckgnwvdsgznwkbj"))))
(build-system python-build-system) (build-system python-build-system)
(native-inputs `(("pkg-config" ,pkg-config) (native-inputs `(("pkg-config" ,pkg-config)
("python-cython", python-cython))) ("python-cython" ,python-cython)))
(home-page "https://github.com/aresch/rencode") (home-page "https://github.com/aresch/rencode")
(synopsis "Serialization of heterogeneous data structures") (synopsis "Serialization of heterogeneous data structures")
(description (description
@ -12158,7 +12158,7 @@ created by running @code{python setup.py develop}).")
(build-system python-build-system) (build-system python-build-system)
(propagated-inputs (propagated-inputs
`(("python-tqdm" ,python-tqdm) `(("python-tqdm" ,python-tqdm)
("python-pkginfo", python-pkginfo) ("python-pkginfo" ,python-pkginfo)
("python-requests" ,python-requests) ("python-requests" ,python-requests)
("python-requests-toolbelt" ,python-requests-toolbelt))) ("python-requests-toolbelt" ,python-requests-toolbelt)))
(home-page "https://github.com/pypa/twine") (home-page "https://github.com/pypa/twine")
@ -12568,7 +12568,7 @@ is the new Pyro version that is actively developed.")
`(("netcdf" ,netcdf))) `(("netcdf" ,netcdf)))
(propagated-inputs (propagated-inputs
`(("python-numpy" ,python2-numpy-1.8) `(("python-numpy" ,python2-numpy-1.8)
("python-pyro", python2-pyro))) ("python-pyro" ,python2-pyro)))
(arguments (arguments
;; ScientificPython is not compatible with Python 3 ;; ScientificPython is not compatible with Python 3
`(#:python ,python-2 `(#:python ,python-2
@ -12915,7 +12915,7 @@ and other tools.")
#t))))) #t)))))
(propagated-inputs (propagated-inputs
`(("python-pygments" ,python-pygments) `(("python-pygments" ,python-pygments)
("python-requests", python-requests) ("python-requests" ,python-requests)
("python-babel" ,python-babel) ; optional, for internationalization ("python-babel" ,python-babel) ; optional, for internationalization
("python-curtsies" ,python-curtsies) ; >= 0.1.18 ("python-curtsies" ,python-curtsies) ; >= 0.1.18
("python-greenlet" ,python-greenlet) ("python-greenlet" ,python-greenlet)

View file

@ -1937,7 +1937,7 @@ different kinds of sliders, and much more.")
("libwebp" ,libwebp) ("libwebp" ,libwebp)
("sqlite" ,sqlite) ("sqlite" ,sqlite)
("fontconfig" ,fontconfig) ("fontconfig" ,fontconfig)
("libxrender", libxrender) ("libxrender" ,libxrender)
("qtbase" ,qtbase) ("qtbase" ,qtbase)
("qtdeclarative" ,qtdeclarative) ("qtdeclarative" ,qtdeclarative)
("qtmultimedia" ,qtmultimedia) ("qtmultimedia" ,qtmultimedia)

View file

@ -79,7 +79,7 @@
("readline" ,readline) ("readline" ,readline)
("xextproto" ,xextproto))) ("xextproto" ,xextproto)))
(native-inputs (native-inputs
`(("perl",perl) `(("perl" ,perl)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("ratpoison.desktop" ,ratpoison.desktop))) ("ratpoison.desktop" ,ratpoison.desktop)))
(home-page "https://www.nongnu.org/ratpoison/") (home-page "https://www.nongnu.org/ratpoison/")

View file

@ -122,9 +122,9 @@ joystick, and graphics hardware.")
("fcitx" ,fcitx) ; helps with CJK input ("fcitx" ,fcitx) ; helps with CJK input
("glib" ,glib) ("glib" ,glib)
("ibus" ,ibus) ("ibus" ,ibus)
("libxkbcommon", libxkbcommon) ("libxkbcommon" ,libxkbcommon)
("wayland", wayland) ("wayland" ,wayland)
("wayland-protocols", wayland-protocols)) ("wayland-protocols" ,wayland-protocols))
(package-inputs sdl))) (package-inputs sdl)))
(license bsd-3))) (license bsd-3)))

View file

@ -42,7 +42,7 @@
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("gmp" ,gmp) `(("gmp" ,gmp)
("lesstif",lesstif) ("lesstif" ,lesstif)
("libffi" ,libffi) ("libffi" ,libffi)
("libx11" ,libx11) ("libx11" ,libx11)
("libxt" ,libxt))) ("libxt" ,libxt)))

View file

@ -128,9 +128,9 @@ configurable through a graphical wizard.")
(string-append "DESTDIR=" (string-append "DESTDIR="
(assoc-ref %outputs "out"))))) (assoc-ref %outputs "out")))))
(inputs (inputs
`(("vte", vte-ng) `(("vte" ,vte-ng)
("gtk+", gtk+) ("gtk+" ,gtk+)
("ncurses", ncurses))) ("ncurses" ,ncurses)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))
@ -292,10 +292,10 @@ multi-seat support, a replacement for @command{mingetty}, and more.")
#:phases (modify-phases %standard-phases #:phases (modify-phases %standard-phases
(delete 'configure)) (delete 'configure))
#:test-target "test")) #:test-target "test"))
(inputs `(("ncurses", ncurses))) (inputs `(("ncurses" ,ncurses)))
(native-inputs `(("libtool", libtool) (native-inputs `(("libtool" ,libtool)
("perl-test-harness" ,perl-test-harness) ("perl-test-harness" ,perl-test-harness)
("pkg-config", pkg-config))) ("pkg-config" ,pkg-config)))
(synopsis "Keyboard entry processing library for terminal-based programs") (synopsis "Keyboard entry processing library for terminal-based programs")
(description (description
"Libtermkey handles all the necessary logic to recognise special keys, UTF-8 "Libtermkey handles all the necessary logic to recognise special keys, UTF-8
@ -692,7 +692,7 @@ terminal or piped input.")
(delete-file "tests/test_input_output.py") (delete-file "tests/test_input_output.py")
#t))))) #t)))))
(propagated-inputs (propagated-inputs
`(("python-wcwidth", python-wcwidth))) `(("python-wcwidth" ,python-wcwidth)))
(native-inputs (native-inputs
`(("python-pytest-runner" ,python-pytest-runner) `(("python-pytest-runner" ,python-pytest-runner)
("python-pytest" ,python-pytest))) ("python-pytest" ,python-pytest)))
@ -762,7 +762,7 @@ than a terminal.")
(invoke "nosetests" "-v")))))) (invoke "nosetests" "-v"))))))
(propagated-inputs (propagated-inputs
`(("python-blessings" ,python-blessings) `(("python-blessings" ,python-blessings)
("python-wcwidth", python-wcwidth))) ("python-wcwidth" ,python-wcwidth)))
(native-inputs (native-inputs
`(("python-mock" ,python-mock) `(("python-mock" ,python-mock)
("python-pyte" ,python-pyte) ("python-pyte" ,python-pyte)

View file

@ -81,10 +81,10 @@
(list (search-path-specification (list (search-path-specification
(variable "VIS_PATH") (variable "VIS_PATH")
(files '("share/vis"))))) (files '("share/vis")))))
(inputs `(("lua", lua) (inputs `(("lua" ,lua)
("ncurses", ncurses) ("ncurses" ,ncurses)
("libtermkey", libtermkey) ("libtermkey" ,libtermkey)
("lua-lpeg", lua-lpeg) ("lua-lpeg" ,lua-lpeg)
("tre" ,tre))) ("tre" ,tre)))
(synopsis "Vim-like text editor") (synopsis "Vim-like text editor")
(description (description

View file

@ -1062,7 +1062,7 @@ SVCD, DVD, 3ivx, DivX 3/4/5, WMV and H.264 movies.")
("waf" ,python-waf) ("waf" ,python-waf)
("wayland" ,wayland) ("wayland" ,wayland)
("wayland-protocols" ,wayland-protocols) ("wayland-protocols" ,wayland-protocols)
("libxkbcommon", libxkbcommon) ("libxkbcommon" ,libxkbcommon)
("youtube-dl" ,youtube-dl) ("youtube-dl" ,youtube-dl)
("zlib" ,zlib))) ("zlib" ,zlib)))
(arguments (arguments
@ -2461,7 +2461,7 @@ MPEG-2, MPEG-4, DVD (VOB)...
("libtool" ,libtool) ("libtool" ,libtool)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("zlib" ,zlib) ("zlib" ,zlib)
("libmediainfo", libmediainfo) ("libmediainfo" ,libmediainfo)
("libzen" ,libzen))) ("libzen" ,libzen)))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments

View file

@ -747,7 +747,7 @@ Machine Protocol.")
("sdl2" ,sdl2) ("sdl2" ,sdl2)
("sdl2-ttf" ,sdl2-ttf) ("sdl2-ttf" ,sdl2-ttf)
("spice-protocol" ,spice-protocol))) ("spice-protocol" ,spice-protocol)))
(native-inputs `(("pkg-config", pkg-config))) (native-inputs `(("pkg-config" ,pkg-config)))
(arguments (arguments
`(#:tests? #f ;; No tests are available. `(#:tests? #f ;; No tests are available.
#:phases (modify-phases %standard-phases #:phases (modify-phases %standard-phases

View file

@ -103,7 +103,7 @@ and for the GLSL.std.450 extended instruction set.
(assoc-ref %build-inputs (assoc-ref %build-inputs
"spirv-headers"))))) "spirv-headers")))))
(inputs `(("spirv-headers" ,spirv-headers))) (inputs `(("spirv-headers" ,spirv-headers)))
(native-inputs `(("pkg-config", pkg-config) (native-inputs `(("pkg-config" ,pkg-config)
("python" ,python))) ("python" ,python)))
(home-page "https://github.com/KhronosGroup/SPIRV-Tools") (home-page "https://github.com/KhronosGroup/SPIRV-Tools")
(synopsis "API and commands for processing SPIR-V modules") (synopsis "API and commands for processing SPIR-V modules")
@ -190,7 +190,7 @@ interpretation of the specifications for these languages.")
("mesa" ,mesa) ("mesa" ,mesa)
("spirv-tools" ,spirv-tools) ("spirv-tools" ,spirv-tools)
("wayland" ,wayland))) ("wayland" ,wayland)))
(native-inputs `(("pkg-config", pkg-config) (native-inputs `(("pkg-config" ,pkg-config)
("python" ,python))) ("python" ,python)))
(home-page (home-page
"https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers") "https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers")

View file

@ -960,9 +960,9 @@ of people.")
; named 'stubout'". The tests can be run by replacing the check phase with ; named 'stubout'". The tests can be run by replacing the check phase with
; the command "python setup.py nosetests --verbosity=3". ; the command "python setup.py nosetests --verbosity=3".
(native-inputs `(; Required for tests: (native-inputs `(; Required for tests:
("python-mox3", python-mox3) ("python-mox3" ,python-mox3)
("python-nose", python-nose))) ("python-nose" ,python-nose)))
(propagated-inputs `(("python-numpy", python-numpy))) (propagated-inputs `(("python-numpy" ,python-numpy)))
(home-page "https://github.com/novnc/websockify") (home-page "https://github.com/novnc/websockify")
(synopsis "WebSockets support for any application/server") (synopsis "WebSockets support for any application/server")
(description "Websockify translates WebSockets traffic to normal socket (description "Websockify translates WebSockets traffic to normal socket
@ -989,7 +989,7 @@ directions.")
#:tests? #f)) ; no test target #:tests? #f)) ; no test target
(native-inputs `(("flex" ,flex))) (native-inputs `(("flex" ,flex)))
(inputs `(("gnutls" ,gnutls) (inputs `(("gnutls" ,gnutls)
("libcrypt", libgcrypt))) ("libcrypt" ,libgcrypt)))
(home-page "https://www.gedanken.org.uk/software/wwwoffle/") (home-page "https://www.gedanken.org.uk/software/wwwoffle/")
(synopsis "Caching web proxy optimized for intermittent internet links") (synopsis "Caching web proxy optimized for intermittent internet links")
(description "WWWOFFLE is a proxy web server that is especially good for (description "WWWOFFLE is a proxy web server that is especially good for

View file

@ -152,21 +152,21 @@ online pastebin services.")
(zero? (system* "sh" "./bootstrap" (zero? (system* "sh" "./bootstrap"
"--gnulib-srcdir=gnulib" "--gnulib-srcdir=gnulib"
"--no-git"))))))) "--no-git")))))))
(inputs `(("autoconf", autoconf) (inputs `(("autoconf" ,autoconf)
("automake", automake) ("automake" ,automake)
("doxygen", doxygen) ("doxygen" ,doxygen)
("flex", flex) ("flex" ,flex)
("gettext", gettext-minimal) ("gettext" ,gettext-minimal)
("gnutls", gnutls/dane) ("gnutls" ,gnutls/dane)
("libiconv", libiconv) ("libiconv" ,libiconv)
("libidn2", libidn2) ("libidn2" ,libidn2)
("libmicrohttpd", libmicrohttpd) ("libmicrohttpd" ,libmicrohttpd)
("libpsl", libpsl) ("libpsl" ,libpsl)
("libtool", libtool) ("libtool" ,libtool)
("pcre2", pcre2) ("pcre2" ,pcre2)
("python", python))) ("python" ,python)))
;; TODO: Add libbrotlidec, libnghttp2. ;; TODO: Add libbrotlidec, libnghttp2.
(native-inputs `(("pkg-config", pkg-config))) (native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://gitlab.com/gnuwget/wget2") (home-page "https://gitlab.com/gnuwget/wget2")
(synopsis "Successor of GNU Wget") (synopsis "Successor of GNU Wget")
(description "GNU Wget2 is the successor of GNU Wget, a file and recursive (description "GNU Wget2 is the successor of GNU Wget, a file and recursive

View file

@ -278,8 +278,8 @@ integrate Windows applications into your desktop.")
(base32 (base32
"14wf7536rkmhav9ibbvhqqkfqmbk1dckhd2679i5scizr5x290x4")))) "14wf7536rkmhav9ibbvhqqkfqmbk1dckhd2679i5scizr5x290x4"))))
(inputs `(("autoconf" ,autoconf) ; for autoreconf (inputs `(("autoconf" ,autoconf) ; for autoreconf
("gtk+", gtk+) ("gtk+" ,gtk+)
("libva", libva) ("libva" ,libva)
("python" ,python) ("python" ,python)
("sdl2" ,sdl2) ("sdl2" ,sdl2)
("util-linux" ,util-linux) ; for hexdump ("util-linux" ,util-linux) ; for hexdump

View file

@ -710,7 +710,7 @@ experience.")
("libxdg-basedir" ,libxdg-basedir) ("libxdg-basedir" ,libxdg-basedir)
("libxkbcommon" ,libxkbcommon) ("libxkbcommon" ,libxkbcommon)
("lua" ,lua) ("lua" ,lua)
("lua-lgi",lua-lgi) ("lua-lgi" ,lua-lgi)
("pango" ,pango) ("pango" ,pango)
("startup-notification" ,startup-notification) ("startup-notification" ,startup-notification)
("xcb-util" ,xcb-util) ("xcb-util" ,xcb-util)

View file

@ -1332,9 +1332,9 @@ XCB util-xrm module provides the following libraries:
(install-file "README" doc) (install-file "README" doc)
;; Avoid unspecified return value. ;; Avoid unspecified return value.
#t)))))) #t))))))
(inputs `(("libx11", libx11) (inputs `(("libx11" ,libx11)
("libxext", libxext) ("libxext" ,libxext)
("libxxf86vm", libxxf86vm))) ("libxxf86vm" ,libxxf86vm)))
(synopsis "Tiny monitor calibration loader for XFree86 (or X.org)") (synopsis "Tiny monitor calibration loader for XFree86 (or X.org)")
(description "xcalib is a tiny tool to load the content of vcgt-Tags in ICC (description "xcalib is a tiny tool to load the content of vcgt-Tags in ICC
profiles to the video card's gamma ramp. It does work with most video card profiles to the video card's gamma ramp. It does work with most video card

View file

@ -1415,7 +1415,7 @@ characters into a single event.")
(propagated-inputs (propagated-inputs
`(("perl-libxml" ,perl-libxml) `(("perl-libxml" ,perl-libxml)
("perl-xml-filter-buffertext" ,perl-xml-filter-buffertext) ("perl-xml-filter-buffertext" ,perl-xml-filter-buffertext)
("perl-xml-namespacesupport", perl-xml-namespacesupport) ("perl-xml-namespacesupport" ,perl-xml-namespacesupport)
("perl-xml-sax-base" ,perl-xml-sax-base))) ("perl-xml-sax-base" ,perl-xml-sax-base)))
(home-page "http://search.cpan.org/dist/XML-SAX-Writer/") (home-page "http://search.cpan.org/dist/XML-SAX-Writer/")
(synopsis "SAX2 XML Writer") (synopsis "SAX2 XML Writer")
@ -1472,7 +1472,7 @@ It provides a flexible escaping technique and pretty printing.")
("perl-xml-sax-writer" ,perl-xml-sax-writer) ("perl-xml-sax-writer" ,perl-xml-sax-writer)
("perl-xml-simple" ,perl-xml-simple) ("perl-xml-simple" ,perl-xml-simple)
("perl-xml-xpathengine" ,perl-xml-xpathengine) ("perl-xml-xpathengine" ,perl-xml-xpathengine)
("perl-test-pod", perl-test-pod) ("perl-test-pod" ,perl-test-pod)
("perl-tree-xpathengine" ,perl-tree-xpathengine))) ("perl-tree-xpathengine" ,perl-tree-xpathengine)))
(home-page "http://search.cpan.org/dist/XML-Twig/") (home-page "http://search.cpan.org/dist/XML-Twig/")
(synopsis "Perl module for processing huge XML documents in tree mode") (synopsis "Perl module for processing huge XML documents in tree mode")

View file

@ -5983,7 +5983,7 @@ basic eye-candy effects.")
("python2-rencode" ,python2-rencode) ("python2-rencode" ,python2-rencode)
("xorg-server" ,xorg-server))) ("xorg-server" ,xorg-server)))
(native-inputs `(("pkg-config" ,pkg-config) (native-inputs `(("pkg-config" ,pkg-config)
("python2-cython", python2-cython))) ("python2-cython" ,python2-cython)))
(arguments (arguments
`(#:python ,python-2 ;; no full Python 3 support yet `(#:python ,python-2 ;; no full Python 3 support yet
#:configure-flags '("--with-tests" #:configure-flags '("--with-tests"