easytier: 2.1.1 -> 2.1.2 (#376259)
[NixPkgs.git] / pkgs / by-name / li / libzra / package.nix
blobeff23c6b539f3231d257793d53bd04be1233f4b2
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "libzra";
10   version = "unstable-2020-09-11";
12   src = fetchFromGitHub {
13     owner = "zraorg";
14     repo = "zra";
15     rev = "57abf2774dfc4624f14a0bc5bba71f044ce54a38";
16     sha256 = "10rlqj6ma02005gdcp57wp48d6cg0vkbv4vl9ai0zlgxyx1g6kc4";
17     fetchSubmodules = true;
18   };
20   nativeBuildInputs = [ cmake ];
22   # in submodule dev as of 1.4.7
23   postPatch = ''
24     (cd submodule/zstd && patch -Np1 < ${./fix-pkg-config.patch})
25   '';
27   meta = with lib; {
28     homepage = "https://github.com/zraorg/ZRA";
29     description = "Library for ZStandard random access";
30     platforms = platforms.all;
31     maintainers = [ ];
32     license = licenses.bsd3;
33   };