2018-07-21 01:44:44 +01:00
|
|
|
{ fetchurl, stdenv, emacs, curl, check, bc }:
|
2010-12-21 16:26:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-03 16:17:32 +00:00
|
|
|
name = "recutils-1.8";
|
2010-12-21 16:26:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/recutils/${name}.tar.gz";
|
2019-01-03 16:17:32 +00:00
|
|
|
sha256 = "14xiln4immfsw8isnvwvq0h23f6z0wilpgsc4qzabnrzb5lsx3nz";
|
2010-12-21 16:26:34 +00:00
|
|
|
};
|
|
|
|
|
2016-04-06 10:36:58 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2018-08-08 22:35:55 +01:00
|
|
|
buildInputs = [ curl emacs ];
|
|
|
|
|
|
|
|
checkInputs = [ check bc ];
|
|
|
|
doCheck = true;
|
2010-12-21 16:26:34 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Tools and libraries to access human-editable, text-based databases";
|
2010-12-21 16:26:34 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/recutils/;
|
2010-12-21 16:26:34 +00:00
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-12-21 16:26:34 +00:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2010-12-21 16:26:34 +00:00
|
|
|
};
|
|
|
|
}
|