biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / archivers / zarchive / default.nix
blob3ef68ae8b71eb4bfe989d815b3b35be225932b18
1 { lib, stdenv, fetchFromGitHub, cmake, zstd }:
3 stdenv.mkDerivation rec {
4   pname = "zarchive";
5   version = "0.1.2";
7   src = fetchFromGitHub {
8     owner = "Exzap";
9     repo = "ZArchive";
10     rev = "v${version}";
11     hash = "sha256-hX637O/mVLTzmG0a9swJu9w+3o26VHo+K/9RhMuf1lI=";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ zstd ];
17   meta = with lib; {
18     description = "File archive format supporting random-access reads";
19     homepage = "https://github.com/Exzap/ZArchive";
20     license = licenses.mit0;
21     maintainers = with maintainers; [ zhaofengli ];
22     mainProgram = "zarchive";
23   };