Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
|
|
enablePython ? false,
|
|
python3,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libplist";
|
|
version = "2.7.0";
|
|
|
|
outputs = [
|
|
"bin"
|
|
"dev"
|
|
"out"
|
|
]
|
|
++ lib.optional enablePython "py";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libimobiledevice";
|
|
repo = "libplist";
|
|
rev = version;
|
|
hash = "sha256-Rc1KwJR+Pb2lN8019q5ywERrR7WA2LuLRiEvNsZSxXc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = lib.optionals enablePython [
|
|
python3
|
|
python3.pkgs.cython
|
|
];
|
|
|
|
preAutoreconf = ''
|
|
export RELEASE_VERSION=${version}
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--enable-debug"
|
|
]
|
|
++ lib.optionals (!enablePython) [
|
|
"--without-cython"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
postFixup = lib.optionalString enablePython ''
|
|
moveToOutput "lib/${python3.libPrefix}" "$py"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Library to handle Apple Property List format in binary or XML";
|
|
homepage = "https://github.com/libimobiledevice/libplist";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "plistutil";
|
|
};
|
|
}
|