liberasurecode: ini at 1.6.2

This commit is contained in:
Sandro Jäckel 2021-10-07 16:51:54 +02:00
parent 1c7c0d64eb
commit 42cf1c99fe
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, zlib }:
stdenv.mkDerivation rec {
pname = "liberasurecode";
version = "1.6.2";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "openstack";
repo = pname;
rev = version;
sha256 = "sha256-qV7DL/7zrwrYOaPj6iHnChGA6KHFwYKjeaMnrGrTPrQ=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zlib ];
meta = with lib; {
description = "Erasure Code API library written in C with pluggable Erasure Code backends";
homepage = "https://github.com/openstack/liberasurecode";
license = licenses.bsd2;
maintainers = teams.openstack.members;
};
}

View File

@ -15739,6 +15739,8 @@ with pkgs;
libesmtp = callPackage ../development/libraries/libesmtp { };
liberasurecode = callPackage ../applications/misc/liberasurecode { };
exiv2 = callPackage ../development/libraries/exiv2 { };
expat = callPackage ../development/libraries/expat { };