mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 22:07:38 +00:00
zarchive: init at 0.1.2
This commit is contained in:
parent
5fb8428618
commit
73410c1043
23
pkgs/tools/archivers/zarchive/default.nix
Normal file
23
pkgs/tools/archivers/zarchive/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user