2021-03-26 09:52:33 +00:00
|
|
|
{ lib, stdenv, autoreconfHook, fetchFromGitHub, pkg-config, enablePython ? false, python ? null, glib }:
|
2010-09-26 20:39:21 +01:00
|
|
|
|
2018-08-13 05:45:46 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libplist";
|
2020-12-05 17:45:57 +00:00
|
|
|
version = "2.2.0";
|
2018-08-13 05:45:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libimobiledevice";
|
|
|
|
repo = pname;
|
2020-12-05 17:45:57 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1vxhpjxniybqsg5wcygmdmr5dv7p2zb34dqnd3bi813rnnzsdjm6";
|
2018-08-13 05:45:46 +01:00
|
|
|
};
|
2010-09-26 20:39:21 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
outputs = ["bin" "dev" "out" ] ++ lib.optional enablePython "py";
|
2010-09-26 20:39:21 +01:00
|
|
|
|
2018-08-13 05:45:46 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2018-08-13 05:45:46 +01:00
|
|
|
autoreconfHook
|
2021-01-21 17:00:13 +00:00
|
|
|
] ++ lib.optionals enablePython [
|
2019-12-25 06:13:59 +00:00
|
|
|
python
|
|
|
|
python.pkgs.cython
|
|
|
|
];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
configureFlags = lib.optionals (!enablePython) [
|
2019-12-25 06:13:59 +00:00
|
|
|
"--without-cython"
|
2018-08-13 05:45:46 +01:00
|
|
|
];
|
2012-01-05 23:15:54 +00:00
|
|
|
|
2018-08-13 05:45:46 +01:00
|
|
|
propagatedBuildInputs = [ glib ];
|
2016-11-09 14:01:28 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
postFixup = lib.optionalString enablePython ''
|
2016-11-09 14:01:28 +00:00
|
|
|
moveToOutput "lib/${python.libPrefix}" "$py"
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-08-13 05:45:46 +01:00
|
|
|
description = "A library to handle Apple Property List format in binary or XML";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/libimobiledevice/libplist";
|
2018-08-13 05:45:46 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2019-04-16 12:45:31 +01:00
|
|
|
maintainers = with maintainers; [ infinisil ];
|
2020-12-02 20:15:53 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2010-09-26 20:39:21 +01:00
|
|
|
};
|
|
|
|
}
|