summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghcjs.nix
diff options
context:
space:
mode:
authorGabriella Gonzalez <Gabriel439@gmail.com>2021-12-11 12:04:13 -0800
committerGitHub <noreply@github.com>2021-12-11 12:04:13 -0800
commitbb976f4e86c91deb124d7267cc02b76e7b8f75b8 (patch)
treededeb15d3bfa388eb0120b66daf5068494aba730 /pkgs/development/haskell-modules/configuration-ghcjs.nix
parent51b266c79720484c4c740f5f63692ff4381aaf78 (diff)
downloadnixpkgs-bb976f4e86c91deb124d7267cc02b76e7b8f75b8.tar
nixpkgs-bb976f4e86c91deb124d7267cc02b76e7b8f75b8.tar.gz
nixpkgs-bb976f4e86c91deb124d7267cc02b76e7b8f75b8.tar.bz2
nixpkgs-bb976f4e86c91deb124d7267cc02b76e7b8f75b8.tar.lz
nixpkgs-bb976f4e86c91deb124d7267cc02b76e7b8f75b8.tar.xz
nixpkgs-bb976f4e86c91deb124d7267cc02b76e7b8f75b8.tar.zst
nixpkgs-bb976f4e86c91deb124d7267cc02b76e7b8f75b8.zip
haskell.packages.ghcjs.vector: Fix evaluation failure (#150002)
The derivation for the GHCJS `vector` package broke in #142940 due to
introducing the line of code that this change deletes.

The offending line appears to have been unintentionally added and
causes an evaluation failure for two separate reason :

* The argument order is wrong

  The change in #142940 switched the `haskellLib` utilities to flip
  their argument order, but the `appendPatch` in the offending line
  has the original argument order

* The patch file referenced by the offending line does not exist

The correct fix is to delete the line, because the patch is not
necessary.  The default version of the `vector` package is `0.12.3.1`,
which already includes the fix from that patch.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghcjs.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghcjs.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix
index 87f83182ea0..aa416012759 100644
--- a/pkgs/development/haskell-modules/configuration-ghcjs.nix
+++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix
@@ -101,9 +101,6 @@ self: super:
   # still present here https://github.com/glguy/th-abstraction/issues/53
   th-abstraction = dontCheck super.th-abstraction;
 
-  # https://github.com/haskell/vector/issues/410
-  vector = appendPatch super.vector (../compilers/ghcjs/patches/vector-ghcjs-storable-set.patch);
-
   # Need hedgehog for tests, which fails to compile due to dep on concurrent-output
   zenc = dontCheck super.zenc;
 }