nixpkgs/pkgs/by-name/li/libideviceactivation/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

56 lines
1021 B
Nix

{
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 = "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 ];
};
})