2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
xz,
|
|
|
|
xar,
|
|
|
|
}:
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pbzx";
|
|
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NiklasRosenstein";
|
|
|
|
repo = "pbzx";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0bwd7wmnhpz1n5p39mh6asfyccj4cm06hwigslcwbb3pdwmvxc90";
|
|
|
|
};
|
2024-06-30 08:16:52 +00:00
|
|
|
buildInputs = [
|
|
|
|
xz
|
|
|
|
xar
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
buildPhase = ''
|
|
|
|
${stdenv.cc.targetPrefix}cc pbzx.c -llzma -lxar -o pbzx
|
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp pbzx $out/bin
|
|
|
|
'';
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Stream parser of Apple's pbzx compression format";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.matthewbauer ];
|
|
|
|
mainProgram = "pbzx";
|
|
|
|
};
|
|
|
|
}
|