summary refs log tree commit diff
path: root/pkgs/tools/misc/recutils/default.nix
blob: 3dd3baed0996ac2b67ffe5912ddd6267b6c47598 (plain) (blame)
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
{ fetchurl, stdenv, emacs, curl, check, bc }:

stdenv.mkDerivation rec {
  name = "recutils-1.7";

  src = fetchurl {
    url = "mirror://gnu/recutils/${name}.tar.gz";
    sha256 = "0cdwa4094x3yx7vn98xykvnlp9rngvd58d19vs3vh5hrvggccg93";
  };

  hardeningDisable = [ "format" ];

  buildInputs = [ curl emacs ];

  checkInputs = [ check bc ];
  doCheck = true;

  # one file fails to compile with emacs 26
  postInstall = ''
    ${emacs}/bin/emacs -Q -batch -f batch-byte-compile $out/share/emacs/site-lisp/*.el || true
  '';

  meta = {
    description = "Tools and libraries to access human-editable, text-based databases";

    longDescription =
      '' GNU Recutils is a set of tools and libraries to access
         human-editable, text-based databases called recfiles.  The data is
         stored as a sequence of records, each record containing an arbitrary
         number of named fields.
      '';

    homepage = http://www.gnu.org/software/recutils/;

    license = stdenv.lib.licenses.gpl3Plus;

    platforms = stdenv.lib.platforms.all;
    maintainers = [ ];
  };
}