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