nixpkgs/pkgs/tools/misc/recutils/default.nix

39 lines
1 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, gettext, emacs, curl, check, bc }:
stdenv.mkDerivation rec {
2016-09-02 19:22:49 +00:00
name = "recutils-1.7";
src = fetchurl {
url = "mirror://gnu/recutils/${name}.tar.gz";
2016-09-02 19:22:49 +00:00
sha256 = "0cdwa4094x3yx7vn98xykvnlp9rngvd58d19vs3vh5hrvggccg93";
};
doCheck = true;
2016-04-06 09:36:58 +00:00
hardeningDisable = [ "format" ];
buildInputs = [ curl emacs ] ++ (stdenv.lib.optionals doCheck [ check bc ]);
2016-09-02 19:22:49 +00:00
postInstall = ''
${emacs}/bin/emacs -Q -batch -f batch-byte-compile $out/share/emacs/site-lisp/*.el #*/
'';
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;
2013-08-16 21:44:33 +00:00
maintainers = [ ];
};
}