about summary refs log tree commit diff
path: root/pkgs/development/mobile/xpwn
AgeCommit message (Collapse)AuthorFilesLines
2022-06-03xpwn: add -fcommon workaroundSergei Trofimovich1-0/+5
Workaround build failure on -fno-common toolchains like upstream gcc-10. Otherwise build fails as: ld: ../ipsw-patch/libxpwn.a(libxpwn.c.o):(.bss+0x4): multiple definition of `endianness'; CMakeFiles/xpwn-bin.dir/src/xpwn.cpp.o:(.bss+0x0): first defined here
2022-05-30treewide: pkgs/development: mark broken for darwinRick van Schijndel1-0/+1
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-04-28libusb-compat-0_1: rename from libusbJan Tojnar1-2/+2
2019-08-21xpwn: bump to commit including openssl 1.1 supportRobin Gloster1-8/+12
2018-11-05treewide: get rid of osx cmake flagsMatthew Bauer1-4/+0
Flags that we now set globally: - CMAKE_OSX_SYSROOT - CMAKE_OSX_DEPLOYMENT_TARGET can now be removed. (cherry picked from commit 8742d5de30dfe2447c0fb56a2e7410b402effc80)
2018-02-01xpwn: build usb-based tools by replacing libusb1 dep with libusbWill Dietz1-2/+2
Otherwise the build fails to detect libusb and doesn't build the 'xpwn' and 'dfu-util' tools. New tools run but I don't have any suitable devices to test :). (I believe latest iGadgets need a newer version of xpwn anyway)
2014-09-10Fix #4019Daniel Peebles1-9/+13
2014-06-06Fix xpwn on Darwin and other case-insensitive file systemsCharles Strahan1-0/+1
2014-03-12Add new package "xpwn" from @dborca's fork.aszlig1-0/+28
This really hase some nice utilities for coping with HFS+ and DMG format. We're going to use it for extracting the xcode DMG, but it could be used for more, even generating DMGs. The reason I'm using the fork instead of the repository from @planetbeing is thet the fork contains a few fixes, especially for dealing with symlinks in HFS+ images. Signed-off-by: aszlig <aszlig@redmoonstudios.org>