nixpkgs/pkgs/tools/misc/recutils/default.nix
Ludovic Courtès 2752fe91b8 GNU recutils 1.2.
svn path=/nixpkgs/trunk/; revision=25875
2011-02-09 21:36:34 +00:00

33 lines
929 B
Nix

{ fetchurl, stdenv, gettext, emacs, curl, check, bc }:
stdenv.mkDerivation rec {
name = "recutils-1.2";
src = fetchurl {
url = "mirror://gnu/recutils/${name}.tar.gz";
sha256 = "1y95niq6d06wyynrgkjs3bi1lj91v4qwdfam3sp31s4ki6vlaqkq";
};
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;
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}