Merge pull request #314590 from clebs/libideviceactivation
libideviceactivation: init at 1.1.1
This commit is contained in:
@@ -3814,6 +3814,15 @@
|
||||
githubId = 199180;
|
||||
name = "Claes Wallin";
|
||||
};
|
||||
clebs = {
|
||||
email = "borja.clemente@gmail.com";
|
||||
github = "clebs";
|
||||
githubId = 1059661;
|
||||
name = "Borja Clemente";
|
||||
keys = [{
|
||||
fingerprint = "C4E1 58BD FD33 3C77 B6C7 178E 2539 757E F64C 60DD";
|
||||
}];
|
||||
};
|
||||
cleeyv = {
|
||||
email = "cleeyv@riseup.net";
|
||||
github = "cleeyv";
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
pkg-config,
|
||||
automake,
|
||||
autoreconfHook,
|
||||
libtool,
|
||||
libplist,
|
||||
libimobiledevice,
|
||||
libxml2,
|
||||
curl,
|
||||
usbmuxd,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "libideviceactivation";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libimobiledevice";
|
||||
repo = "libideviceactivation";
|
||||
rev = "refs/tags/${finalAttrs.version}";
|
||||
hash = "sha256-owcQpCN4+A785oy9pCboJIyfpgZ6X+8PRzqGtWpYl2w=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
automake
|
||||
autoreconfHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libtool
|
||||
libplist
|
||||
libimobiledevice
|
||||
libxml2
|
||||
curl
|
||||
usbmuxd
|
||||
];
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = {
|
||||
description = "A library to manage the activation process of Apple iOS devices.";
|
||||
homepage = "https://libimobiledevice.org";
|
||||
license = with lib.licenses; [
|
||||
lgpl21
|
||||
gpl3
|
||||
];
|
||||
mainProgram = "ideviceactivation";
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ clebs ];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user