zarchive: init at 0.1.2

This commit is contained in:
Zhaofeng Li 2022-10-30 11:49:17 -06:00
parent 5fb8428618
commit 73410c1043
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub, cmake, zstd }:
stdenv.mkDerivation rec {
pname = "zarchive";
version = "0.1.2";
src = fetchFromGitHub {
owner = "Exzap";
repo = "ZArchive";
rev = "v${version}";
hash = "sha256-hX637O/mVLTzmG0a9swJu9w+3o26VHo+K/9RhMuf1lI=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ zstd ];
meta = with lib; {
description = "File archive format supporting random-access reads";
homepage = "https://github.com/Exzap/ZArchive";
license = licenses.mit0;
maintainers = with maintainers; [ zhaofengli ];
};
}

View File

@ -13057,6 +13057,8 @@ with pkgs;
yj = callPackage ../development/tools/yj { };
zarchive = callPackage ../tools/archivers/zarchive { };
zprint = callPackage ../development/tools/zprint { };
yle-dl = callPackage ../tools/misc/yle-dl {};