mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
jhc: convert build to Haskell NG
This commit is contained in:
parent
7299118724
commit
a186500417
@ -1,5 +1,9 @@
|
||||
{ stdenv, fetchurl, perl, ghc, binary, zlib, utf8String, readline, fgl,
|
||||
regexCompat, HsSyck, random }:
|
||||
{ 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}";
|
||||
@ -10,10 +14,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0lrgg698mx6xlrqcylba9z4g1f053chrzc92ri881dmb1knf83bz";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ perl ghc binary zlib utf8String
|
||||
readline fgl regexCompat HsSyck random
|
||||
];
|
||||
buildInputs = [ perl ghc ];
|
||||
|
||||
meta = {
|
||||
description = "Whole-program, globally optimizing Haskell compiler";
|
||||
|
@ -3744,8 +3744,7 @@ let
|
||||
};
|
||||
|
||||
jhc = callPackage ../development/compilers/jhc {
|
||||
inherit (haskellPackages_ghc763) ghc binary zlib utf8String readline fgl
|
||||
regexCompat HsSyck random;
|
||||
inherit (haskell.packages.ghc763) ghcWithPackages;
|
||||
};
|
||||
|
||||
uhc = callPackage ../development/compilers/uhc/default.nix ({
|
||||
|
Loading…
Reference in New Issue
Block a user