36 lines
911 B
Nix
Raw Permalink Normal View History

2021-01-15 16:19:50 +07:00
{ fetchurl, lib, stdenv, emacs, curl, check, bc }:
stdenv.mkDerivation rec {
2019-01-03 10:17:32 -06:00
name = "recutils-1.8";
src = fetchurl {
url = "mirror://gnu/recutils/${name}.tar.gz";
2019-01-03 10:17:32 -06:00
sha256 = "14xiln4immfsw8isnvwvq0h23f6z0wilpgsc4qzabnrzb5lsx3nz";
};
2016-04-06 09:36:58 +00:00
hardeningDisable = [ "format" ];
buildInputs = [ curl emacs ];
checkInputs = [ check bc ];
doCheck = true;
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 = "https://www.gnu.org/software/recutils/";
2021-01-15 16:19:50 +07:00
license = lib.licenses.gpl3Plus;
2021-01-15 16:19:50 +07:00
platforms = lib.platforms.all;
2013-08-16 23:44:33 +02:00
maintainers = [ ];
};
}