nixpkgs/pkgs/tools/misc/recutils/default.nix

35 lines
953 B
Nix
Raw Normal View History

{ fetchurl, stdenv, gettext, emacs, curl, check, bc }:
stdenv.mkDerivation rec {
name = "recutils-1.5";
src = fetchurl {
url = "mirror://gnu/recutils/${name}.tar.gz";
sha256 = "1v2xzwwwhc5j5kmvg4sv6baxjpsfqh8ln7ilv4mgb1408rs7xmky";
};
2013-03-09 16:24:31 +04:00
patches = [ ./glibc.patch ];
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 = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.all;
2013-08-17 01:44:33 +04:00
maintainers = [ ];
};
}