about summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/configurable.nix
diff options
context:
space:
mode:
authorWink Saville <wink@saville.com>2016-09-23 09:13:23 -0700
committerWink Saville <wink@saville.com>2016-09-23 09:13:23 -0700
commitd81a6e6f9cb7d7a6c82b2ce563dbeb3c0ec0642c (patch)
treea81e9cdd13cb82125fb931ef7b6b453f295e3160 /pkgs/applications/editors/vim/configurable.nix
parent08d7cfa4203dd5adc8b98979ab085a8a100c3f34 (diff)
downloadnixlib-d81a6e6f9cb7d7a6c82b2ce563dbeb3c0ec0642c.tar
nixlib-d81a6e6f9cb7d7a6c82b2ce563dbeb3c0ec0642c.tar.gz
nixlib-d81a6e6f9cb7d7a6c82b2ce563dbeb3c0ec0642c.tar.bz2
nixlib-d81a6e6f9cb7d7a6c82b2ce563dbeb3c0ec0642c.tar.lz
nixlib-d81a6e6f9cb7d7a6c82b2ce563dbeb3c0ec0642c.tar.xz
nixlib-d81a6e6f9cb7d7a6c82b2ce563dbeb3c0ec0642c.tar.zst
nixlib-d81a6e6f9cb7d7a6c82b2ce563dbeb3c0ec0642c.zip
Remove python_framework.patch
In the [discussion](https://github.com/NixOS/nixpkgs/pull/18801) of this pull
request @LnL7 was unable to complete a darwin build because the
python_framework.patch does not apply and suggests it should be removed.
Diffstat (limited to 'pkgs/applications/editors/vim/configurable.nix')
-rw-r--r--pkgs/applications/editors/vim/configurable.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix
index 59c82369d116..4ab0ca3f27c9 100644
--- a/pkgs/applications/editors/vim/configurable.nix
+++ b/pkgs/applications/editors/vim/configurable.nix
@@ -69,12 +69,6 @@ composableDerivation {
 
     prePatch = "cd src";
 
-    # if darwin support is enabled, we want to make sure we're not building with
-    # OS-installed python framework
-    patches = stdenv.lib.optionals
-      (stdenv.isDarwin && (config.vim.darwin or true))
-      [ ./python_framework.patch ];
-
     configureFlags
       = [ "--enable-gui=${args.gui}" "--with-features=${args.features}" ];