aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/ocaml.scm
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2019-02-19 22:37:02 +0100
committerAndreas Enge <andreas@enge.fr>2019-02-19 22:37:02 +0100
commit2e125ece093ef842ca017ffb146cbc5fa33f2f75 (patch)
tree859ba5072c5caf86c6ca1b6450f242108c759cf8 /gnu/packages/ocaml.scm
parentc12b23469576fb1c3920120ef06b696daa30b855 (diff)
downloadguix-2e125ece093ef842ca017ffb146cbc5fa33f2f75.tar.gz
guix-2e125ece093ef842ca017ffb146cbc5fa33f2f75.zip
gnu: pplacer: Remove the package, which is affected by a CVE on ocaml@4.01.
This makes progress towards fixing <https://bugs.gnu.org/27462>. * gnu/packages/bioinformatics.scm (pplacer, pplacer-scripts): Remove variables.
Diffstat (limited to 'gnu/packages/ocaml.scm')
0 files changed, 0 insertions, 0 deletions
;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages rednotebook) #:use-module (guix packages) #:use-module (guix git-download) #:use-module (guix build-system python) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages python) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) #:use-module (gnu packages webkit) #:use-module (gnu packages python-xyz)) (define-public rednotebook (package (name "rednotebook") (version "2.11.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/jendrikseipp/rednotebook.git") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "04c7a0wgmdl88v9386y1052c38ajbkryiwhqps5lx34d4g7r6hm1")))) (build-system python-build-system) (arguments ;; Tests fail to find the "_" function. ;; It should be defined in rednotebook/info.py if '_' is not a member of ;; 'builtins'. It is either not defined or not exported during the check ;; phase. The program does not have this problem after it is installed. ;; TODO: Fix tests. `(#:tests? #f #:imported-modules ((guix build glib-or-gtk-build-system) ,@%python-build-system-modules) #:modules ((ice-9 match) (guix build python-build-system) ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:) (guix build utils)) #:phases (modify-phases %standard-phases ;; Make sure rednotebook can find the typelibs and webkitgtk shared ;; libraries. (add-before 'wrap 'wrap-with-library-paths (lambda* (#:key inputs outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out")) (gi-typelib-path (getenv "GI_TYPELIB_PATH")) (webkitgtk-path (string-append (assoc-ref inputs "webkitgtk") "/lib"))) (wrap-program (string-append out "/bin/rednotebook") `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)) `("LD_LIBRARY_PATH" ":" prefix (,webkitgtk-path))) #t)))))) (inputs `(("gtk+" ,gtk+) ("gtksourceview" ,gtksourceview-3) ("python-pyyaml" ,python-pyyaml) ("python-pygobject" ,python-pygobject) ("webkitgtk" ,webkitgtk))) ;; TODO: package the following for python3 (if possible), add them as ;; dependencies, and remove them from rednotebook source: ;; pygtkspellcheck, elib.intl, msgfmt, txt2tags ;; TODO: package and add pyenchant for python3 and add it as a dependency. (home-page "https://www.rednotebook.app") (synopsis "Daily journal with calendar, templates and keyword searching") (description "RedNotebook is a modern desktop journal. It lets you format, tag and search your entries. You can also add pictures, links and customizable templates, spell check your notes, and export to plain text, HTML, Latex or PDF.") (license (list license:gpl2+ ; rednotebook, txt2tags license:lgpl3+ ; elib.intl license:gpl3+)))) ; pygtkspellcheck