2010-12-21 17:26:34 +01:00
|
|
|
{ fetchurl, stdenv, gettext, emacs, curl, check, bc }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-01-18 21:52:07 +01:00
|
|
|
name = "recutils-1.5";
|
2010-12-21 17:26:34 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/recutils/${name}.tar.gz";
|
2012-01-18 21:52:07 +01:00
|
|
|
sha256 = "1v2xzwwwhc5j5kmvg4sv6baxjpsfqh8ln7ilv4mgb1408rs7xmky";
|
2010-12-21 17:26:34 +01:00
|
|
|
};
|
|
|
|
|
2013-03-09 13:24:31 +01:00
|
|
|
patches = [ ./glibc.patch ];
|
|
|
|
|
2010-12-21 17:26:34 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
buildInputs = [ curl emacs ] ++ (stdenv.lib.optionals doCheck [ check bc ]);
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU Recutils, 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 = http://www.gnu.org/software/recutils/;
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2010-12-21 17:26:34 +01:00
|
|
|
};
|
|
|
|
}
|