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