;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Eric Bavier ;;; Copyright © 2015 Mark H Weaver ;;; Copyright © 2016 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages jrnl) #:use-module (guix packages) #:use-module (guix licenses) #:use-module (guix download) #:use-module (guix build-system python) #:use-module (gnu packages check) #:use-module (gnu packages python) #:use-module (gnu packages python-crypto) #:use-module (gnu packages python-xyz) #:use-module (gnu packages time)) (define-public jrnl (package (name "jrnl") (version "1.9.7") (source (origin (method url-fetch) (uri (string-append "https://github.com/maebert/jrnl/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0mfq7hhw5np2dj9jlxpyyk2cg9i0xgz2brb894d928hczszy97bq")))) (build-system python-build-system) (native-inputs `(("behave" ,behave))) (inputs `(("python" ,python) ("python-keyring" ,python-keyring) ("python-pycrypto" ,python-pycrypto) ("python-pytz" ,python-pytz) ("python-tzlocal" ,python-tzlocal) ("python-six" ,python-six) ("python-dateutil" ,python-dateutil) ("python-parsedatetime" ,python-parsedatetime))) (home-page "http://maebert.github.io/jrnl/") (synopsis "Personal journal application") (description "Jrnl is a command line journal application that stores your journal in a plain text file. Optionally, your journal can be encrypted using 256-bit AES encryption.") (license x11))) er'>AgeCommit message (Expand)Author 2020-06-16etc: Add committer script....Ricardo Wurmus scm?id=9b14b26f0a04175ff33950a2ae4410149e52c470'>gnu: packages: Remove last year's deprecations....Tobias Geerinckx-Rice 2021-10-23gnu: Rename openexr to openexr-2....Vinicius Monego 2021-10-05gnu: gst-plugins-bad: Build with the latest SRT....Marius Bakke 2021-10-05gnu: gst-plugins-bad: Build with system usrsctp....Marius Bakke 2021-09-25Update copyright assignments for Liliana Marie Prikler....Liliana Marie Prikler 2021-06-14gnu: Rename qtbase to qtbase-5....Maxim Cournoyer 2021-04-27gnu: gst-plugins-ugly: Fix some out-of-bounds reads....Leo Famulari 2021-04-27gnu: gst-plugins-base: Fix an invalid read when parsing ID3v2 tags....Leo Famulari 2021-04-27gnu: gst-plugins-bad: Fix an overflow when processing video files....Leo Famulari 2021-04-27gnu: gst-libav: Fix a stack corruption bug....Leo Famulari 2021-04-27gnu: gst-plugins-good: Fix CVE-2021-3497 and CVE-2021-3498....Leo Famulari 2021-03-27gnu: Use 'gtk-doc/stable' in native-inputs of selected packages....Mark H Weaver 2021-02-28gnu: gst123: Use HTTPS home page URI....Nicolas Goaziou E Plasma: Update to 5.14.5....Marius Bakke 2019-02-12gnu: Add copyright line for commit c1144c78ad853dc1bfbd6f32a6....Marius Bakke 2019-02-12gnu: Move KDE Plasma components to separate module....Marius Bakke