summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDomen Kožar <domen@enlambda.com>2017-01-25 06:39:28 +0100
committerGitHub <noreply@github.com>2017-01-25 06:39:28 +0100
commitb5c1b8eb6792287b33f8ec3a29b05a59563932ad (patch)
tree089f09abf8ece511248cb8a96d1a24b15693cea3 /pkgs
parent95add2c2f76521793ee7fed8140411420b53e055 (diff)
parenta96b6e64fb6028c29dea49b5c74e8c45e668f529 (diff)
downloadnixlib-b5c1b8eb6792287b33f8ec3a29b05a59563932ad.tar
nixlib-b5c1b8eb6792287b33f8ec3a29b05a59563932ad.tar.gz
nixlib-b5c1b8eb6792287b33f8ec3a29b05a59563932ad.tar.bz2
nixlib-b5c1b8eb6792287b33f8ec3a29b05a59563932ad.tar.lz
nixlib-b5c1b8eb6792287b33f8ec3a29b05a59563932ad.tar.xz
nixlib-b5c1b8eb6792287b33f8ec3a29b05a59563932ad.tar.zst
nixlib-b5c1b8eb6792287b33f8ec3a29b05a59563932ad.zip
Merge pull request #22118 from LumiGuide/ghc802-cleanup
ghc-8.0.2: remove unused fetchFilteredPatch function
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/ghc/8.0.2.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/pkgs/development/compilers/ghc/8.0.2.nix b/pkgs/development/compilers/ghc/8.0.2.nix
index 5979eba3e100..ba8401b9b092 100644
--- a/pkgs/development/compilers/ghc/8.0.2.nix
+++ b/pkgs/development/compilers/ghc/8.0.2.nix
@@ -4,13 +4,6 @@
 
 let
   inherit (bootPkgs) ghc;
-
-  fetchFilteredPatch = args: fetchurl (args // {
-    downloadToTemp = true;
-    postFetch = ''
-      ${patchutils}/bin/filterdiff --clean --strip-match=1 -x 'testsuite/*' "$downloadedFile" > "$out"
-    ''; # fix syntax highlighting: */
-  });
 in
 stdenv.mkDerivation rec {
   version = "8.0.2";