mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Adds getdata-0.8.5
The GetData Project is the reference implementation of the Dirfile Standards, a filesystem-based, column-oriented database format for time-ordered binary data. The Dirfile database format is designed to provide a fast, simple format for storing and reading data. Homepage: http://getdata.sourceforge.net/
This commit is contained in:
parent
c9dff002a3
commit
94f20a542a
2 changed files with 18 additions and 0 deletions
16
pkgs/development/libraries/getdata/default.nix
Normal file
16
pkgs/development/libraries/getdata/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ stdenv, fetchurl }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "getdata-0.8.5";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/getdata/${name}.tar.bz2";
|
||||
sha256 = "0km6hbv18m9g8fxdqfcmk3bjr47w856v4hbrxpd609m6rk0j40zf";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Reference implementation of the Dirfile Standards";
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.vbgl ];
|
||||
homepage = http://getdata.sourceforge.net/;
|
||||
};
|
||||
}
|
|
@ -5169,6 +5169,8 @@ let
|
|||
|
||||
geos = callPackage ../development/libraries/geos { };
|
||||
|
||||
getdata = callPackage ../development/libraries/getdata { };
|
||||
|
||||
gettext = gettext_0_18;
|
||||
|
||||
gettext_0_17 = callPackage ../development/libraries/gettext/0.17.nix { };
|
||||
|
|
Loading…
Reference in a new issue