about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorLeon Isenberg <ljli@users.noreply.github.com>2017-04-07 20:02:32 +0200
committerLeon Isenberg <ljli@users.noreply.github.com>2017-04-07 21:41:01 +0200
commit60e937173846f1b28e27aaa3abbf200452325e74 (patch)
tree6969abe58f5027d79941fcec9b1feb99d9c61c3b /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parenta5ee494046b4259a4a2dfea95776faa898d1bd26 (diff)
downloadnixlib-60e937173846f1b28e27aaa3abbf200452325e74.tar
nixlib-60e937173846f1b28e27aaa3abbf200452325e74.tar.gz
nixlib-60e937173846f1b28e27aaa3abbf200452325e74.tar.bz2
nixlib-60e937173846f1b28e27aaa3abbf200452325e74.tar.lz
nixlib-60e937173846f1b28e27aaa3abbf200452325e74.tar.xz
nixlib-60e937173846f1b28e27aaa3abbf200452325e74.tar.zst
nixlib-60e937173846f1b28e27aaa3abbf200452325e74.zip
haskell: ghcjs packages: Remove ghcjs-prim
It is wired into ghcjs now.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index ee62cf64fec6..7f561133b64e 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -95,18 +95,6 @@ self: super: {
   # https://github.com/kazu-yamamoto/unix-time/issues/30
   unix-time = dontCheck super.unix-time;
 
-  ghcjs-prim = self.callPackage ({ mkDerivation, fetchgit, primitive }: mkDerivation {
-    pname = "ghcjs-prim";
-    version = "0.1.0.0";
-    src = fetchgit {
-      url = git://github.com/ghcjs/ghcjs-prim.git;
-      rev = "dfeaab2aafdfefe46bf12960d069f28d2e5f1454"; # ghc-7.10 branch
-      sha256 = "19kyb26nv1hdpp0kc2gaxkq5drw5ib4za0641py5i4bbf1g58yvy";
-    };
-    buildDepends = [ primitive ];
-    license = pkgs.stdenv.lib.licenses.bsd3;
-  }) {};
-
   # diagrams/monoid-extras#19
   monoid-extras = overrideCabal super.monoid-extras (drv: {
     prePatch = "sed -i 's|4\.8|4.9|' monoid-extras.cabal";