mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
21eeb00a08
Flags that we now set globally: - CMAKE_OSX_SYSROOT - CMAKE_OSX_DEPLOYMENT_TARGET can now be removed. (cherry picked from commit 8742d5de30dfe2447c0fb56a2e7410b402effc80)
30 lines
977 B
Nix
30 lines
977 B
Nix
{ stdenv, fetchgit, cmake, zlib, libpng, bzip2, libusb, openssl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xpwn-0.5.8git";
|
|
|
|
src = fetchgit {
|
|
url = "git://github.com/dborca/xpwn.git";
|
|
rev = "4534da88d4e8a32cdc9da9b5326e2cc482c95ef0";
|
|
sha256 = "1h1ak40fg5bym0hifpii9q2hqdp2m387cwfzb4bl6qq36xpkd6wv";
|
|
};
|
|
|
|
preConfigure = ''
|
|
rm BUILD # otherwise `mkdir build` fails on case insensitive file systems
|
|
sed -r -i \
|
|
-e 's/(install.*TARGET.*DESTINATION )\.\)/\1bin)/' \
|
|
-e 's!(install.*(FILE|DIR).*DESTINATION )([^)]*)!\1share/xpwn/\3!' \
|
|
*/CMakeLists.txt
|
|
sed -i -e '/install/d' CMakeLists.txt
|
|
'';
|
|
|
|
buildInputs = [ cmake zlib libpng bzip2 libusb openssl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://planetbeing.lighthouseapp.com/projects/15246-xpwn";
|
|
description = "Custom NOR firmware loader/IPSW generator for the iPhone";
|
|
license = licenses.gpl3Plus;
|
|
platforms = with platforms; linux ++ darwin;
|
|
};
|
|
}
|