summary refs log tree commit diff
path: root/pkgs/development/mobile/xpwn
diff options
context:
space:
mode:
authorCharles Strahan <charles.c.strahan@gmail.com>2014-06-06 18:06:03 -0400
committerCharles Strahan <charles.c.strahan@gmail.com>2014-06-06 18:06:03 -0400
commitaf479a67b7c11350bafa65b3f3441640a32f033c (patch)
treec720799d85ea0d74e0e72159583969e21cddfd8b /pkgs/development/mobile/xpwn
parent5f987d99e82a836a57589a9fc4b9c6b6c2563f3b (diff)
downloadnixpkgs-af479a67b7c11350bafa65b3f3441640a32f033c.tar
nixpkgs-af479a67b7c11350bafa65b3f3441640a32f033c.tar.gz
nixpkgs-af479a67b7c11350bafa65b3f3441640a32f033c.tar.bz2
nixpkgs-af479a67b7c11350bafa65b3f3441640a32f033c.tar.lz
nixpkgs-af479a67b7c11350bafa65b3f3441640a32f033c.tar.xz
nixpkgs-af479a67b7c11350bafa65b3f3441640a32f033c.tar.zst
nixpkgs-af479a67b7c11350bafa65b3f3441640a32f033c.zip
Fix xpwn on Darwin and other case-insensitive file systems
Diffstat (limited to 'pkgs/development/mobile/xpwn')
-rw-r--r--pkgs/development/mobile/xpwn/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/mobile/xpwn/default.nix b/pkgs/development/mobile/xpwn/default.nix
index b248107141f..049595c49a5 100644
--- a/pkgs/development/mobile/xpwn/default.nix
+++ b/pkgs/development/mobile/xpwn/default.nix
@@ -11,6 +11,7 @@ stdenv.mkDerivation {
   };
 
   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!' \