Advertisement
Guest User

Untitled

a guest
Dec 19th, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.12 KB | None | 0 0
  1. (use-modules
  2.  (guix packages)
  3.  (guix download)
  4.  (guix build-system gnu)
  5.  (guix licenses)
  6.  (gnu packages algebra)
  7.  (gnu packages compression)
  8.  (gnu packages pkg-config)
  9.  (gnu packages python)
  10.  
  11.  (gnu packages qt))
  12.  
  13. (package
  14.  (name "lyx")
  15.  (version "2.2.3")
  16.  (source (origin
  17.       (method url-fetch)
  18.       (uri (string-append "ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/lyx-"
  19.                   version ".tar.gz"))
  20.       (sha256
  21.        (base32 "0xvaz0i371nn2ndinc0d3ywj76ivb62649a4sdgwbivisiahd2fj"))))
  22.  (build-system gnu-build-system)
  23.  (inputs `(("pkg-config" ,pkg-config)
  24.        ("python" ,python-2)
  25.        ("qtbase" ,qtbase)
  26.        ("qtsvg" ,qtsvg)
  27.        ("bc" ,bc)
  28.        ("zlib" ,zlib)))
  29.  (arguments `(#:configure-flags (list "--enable-qt5")))
  30.  (home-page "http://www.lyx.org")
  31.  (synopsis "An advanced WYSIWYM document processor & LaTeX front-end")
  32.  (description "LyX is a document processor that encourages an approach
  33. to writing based on the structure of your documents (WYSIWYM) and not
  34. simply their appearance (WYSIWYG). LyX combines the power and
  35. flexibility of TeX/LaTeX with the ease of use of a graphical
  36. interface.")
  37.  (license gpl2+))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement