summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/libzra/default.nix
blob: b5fe6e593566ffff8194216ad7bde5e83be4ae4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv
, fetchFromGitHub
, cmake
}:

stdenv.mkDerivation rec {
  pname = "libzra";
  version = "unstable-2020-08-10";

  src = fetchFromGitHub {
    owner = "zraorg";
    repo = "zra";
    rev = "e678980ae7e79efd716b4a6610fe9f148425fd6b";
    sha256 = "132xyzhadahm01nas8gycjza5hs839fnpsh73im2a7wwfdw76z4h";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [ cmake ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/zraorg/ZRA";
    description = "Library for ZStandard random access";
    platforms = platforms.all;
    maintainers = [ maintainers.ivar ];
    license = licenses.bsd3;
  };
}