mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
liberasurecode: ini at 1.6.2
This commit is contained in:
parent
1c7c0d64eb
commit
42cf1c99fe
pkgs
26
pkgs/applications/misc/liberasurecode/default.nix
Normal file
26
pkgs/applications/misc/liberasurecode/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -15739,6 +15739,8 @@ with pkgs;
|
||||||
|
|
||||||
libesmtp = callPackage ../development/libraries/libesmtp { };
|
libesmtp = callPackage ../development/libraries/libesmtp { };
|
||||||
|
|
||||||
|
liberasurecode = callPackage ../applications/misc/liberasurecode { };
|
||||||
|
|
||||||
exiv2 = callPackage ../development/libraries/exiv2 { };
|
exiv2 = callPackage ../development/libraries/exiv2 { };
|
||||||
|
|
||||||
expat = callPackage ../development/libraries/expat { };
|
expat = callPackage ../development/libraries/expat { };
|
||||||
|
|
Loading…
Reference in a new issue