mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
libideviceactivation: init at 1.1.1
Signed-off-by: Borja Clemente <borja.clemente@gmail.com>
This commit is contained in:
parent
ab7735598b
commit
fce0a35293
55
pkgs/by-name/li/libideviceactivation/package.nix
Normal file
55
pkgs/by-name/li/libideviceactivation/package.nix
Normal file
@ -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 ];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user