summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-12-26 15:11:44 +0100
committerPeter Simons <simons@cryp.to>2017-12-26 15:12:36 +0100
commitb03ac7d22b65f4719c8efbdf3400b5c2a927aa79 (patch)
tree15405bb662995cdc6051317165dccf3f31d82363 /pkgs/development/compilers
parent7f91eb94be02bcc403f31d96eebb59a0f07400d8 (diff)
downloadnixlib-b03ac7d22b65f4719c8efbdf3400b5c2a927aa79.tar
nixlib-b03ac7d22b65f4719c8efbdf3400b5c2a927aa79.tar.gz
nixlib-b03ac7d22b65f4719c8efbdf3400b5c2a927aa79.tar.bz2
nixlib-b03ac7d22b65f4719c8efbdf3400b5c2a927aa79.tar.lz
nixlib-b03ac7d22b65f4719c8efbdf3400b5c2a927aa79.tar.xz
nixlib-b03ac7d22b65f4719c8efbdf3400b5c2a927aa79.tar.zst
nixlib-b03ac7d22b65f4719c8efbdf3400b5c2a927aa79.zip
jhc: drop broken Haskell compiler
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/jhc/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/compilers/jhc/default.nix b/pkgs/development/compilers/jhc/default.nix
deleted file mode 100644
index 6b8c6599062e..000000000000
--- a/pkgs/development/compilers/jhc/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, fetchurl, perl, ghcWithPackages }:
-
-let ghc = ghcWithPackages (hpkgs: with hpkgs; [
-            binary zlib utf8-string readline fgl regex-compat HsSyck random
-          ]);
-in
-
-stdenv.mkDerivation rec {
-  name = "jhc-${version}";
-  version = "0.8.2";
-
-  src = fetchurl {
-    url    = "http://repetae.net/dist/${name}.tar.gz";
-    sha256 = "0lrgg698mx6xlrqcylba9z4g1f053chrzc92ri881dmb1knf83bz";
-  };
-
-  buildInputs = [ perl ghc ];
-
-  preConfigure = ''
-    configureFlagsArray+=("CC=cc")
-    configureFlagsArray+=("--with-hsc2hs=${ghc}/bin/hsc2hs --cc=cc")
-  '';
-
-  meta = {
-    description = "Whole-program, globally optimizing Haskell compiler";
-    homepage = http://repetae.net/computer/jhc/;
-    license = stdenv.lib.licenses.bsd3;
-    platforms = ["x86_64-linux"]; # 32 bit builds are broken
-    maintainers = with stdenv.lib.maintainers; [ aforemny thoughtpolice ];
-    broken = true; # https://hydra.nixos.org/build/61700723
-  };
-}