mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
GNU Recutils 1.0.
svn path=/nixpkgs/branches/stdenv-updates/; revision=25227
This commit is contained in:
parent
c14382cb45
commit
bd311de25c
2 changed files with 34 additions and 0 deletions
32
pkgs/tools/misc/recutils/default.nix
Normal file
32
pkgs/tools/misc/recutils/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ fetchurl, stdenv, gettext, emacs, curl, check, bc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "recutils-1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/recutils/${name}.tar.gz";
|
||||
sha256 = "1m8ir31wjybm9x8bv73f330kb2hkmc8lrpwgd5h9avva4x5b7g5d";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -1122,6 +1122,8 @@ let
|
|||
|
||||
rtmpdump = callPackage ../tools/video/rtmpdump { };
|
||||
|
||||
recutils = callPackage ../tools/misc/recutils { };
|
||||
|
||||
reiser4progs = callPackage ../tools/filesystems/reiser4progs { };
|
||||
|
||||
reiserfsprogs = callPackage ../tools/filesystems/reiserfsprogs { };
|
||||
|
|
Loading…
Reference in a new issue