aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/pem.scm
blob: 324ed607c73b05ad5ae8cdb5643dbcf16cad28e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Eric Bavier <bavier@member.fsf.org>
;;;
;;; 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 <http://www.gnu.org/licenses/>.

(define-module (gnu packages pem)
  #:use-module (guix packages)
  #:use-module (guix licenses)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages perl))

(define-public pem
  (package
    (name "pem")
    (version "0.7.9")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/pem/pem-"
                          version ".tar.gz"))
      (sha256
       (base32
        "03iqcki1lakkck1akdyvljjapgqda3l0rh38id7jhrac9kcxqgg2"))))
    (build-system gnu-build-system)
    (inputs `(("perl" ,perl)))
    (home-page "http://www.gnu.org/software/pem/")
    (synopsis "Personal expenses manager")
    (description
     "GNU Pem is a simple tool for tracking personal income and
expenses.  It operates from the command line and it stores its data
in a basic text format in your home directory.  It can easily print
reports of your spending on different expenses via a basic search
feature.")
    (license gpl3+)))
020-12-19tests: Check the mtime and permissions of substituted items.Ludovic Courtès 2020-12-19tests: Check the build trace for hash mismatches on substitutes.Ludovic Courtès 2020-09-14tests: Remove one 'delete-paths' call in 'tests/store.scm'.Ludovic Courtès 2020-09-14daemon: Spawn 'guix authenticate' once for all.Ludovic Courtès 2020-09-11store: Test 'import-paths' with unauthorized and unsigned nar bundles.Ludovic Courtès 2020-08-28store: 'with-store' returns as many values as its body.Ludovic Courtès 2020-06-27daemon: Recognize SHA3 and BLAKE2s.Ludovic Courtès 2020-05-22packages: Introduce <content-hash> and use it in <origin>.Ludovic Courtès 2020-05-22tests: Test 'add-to-store' with several hash algorithms.Ludovic Courtès 2020-05-14store: 'mapm/accumulate-builds' preserves '%current-target-system'.Ludovic Courtès 2020-04-04store: 'with-store' doesn't close the store upon abort.Ludovic Courtès 2020-03-29store: Add 'map/accumulate-builds'.Ludovic Courtès 2020-03-22store: Add 'with-build-handler'.Ludovic Courtès 2019-10-16daemon: Make 'profiles/per-user' non-world-writable.Ludovic Courtès