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