Add jhc 0.8.0
This commit is contained in:
parent
a4cd5afd03
commit
f2e82a385e
29
pkgs/development/compilers/jhc/default.nix
Normal file
29
pkgs/development/compilers/jhc/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
stdenv, fetchurl, perl, ghc, binary, zlib, utf8String, readline, fgl,
|
||||||
|
regexCompat, HsSyck, random
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
name = "jhc-${version}";
|
||||||
|
|
||||||
|
version = "0.8.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://repetae.net/dist/${name}.tar.gz";
|
||||||
|
sha256 = "0rbv0gpp7glhd9xqy7snbiaiizwnsfg9vzhvyywcvbmb35yivy2a";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
perl ghc binary zlib utf8String readline fgl regexCompat HsSyck random
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = ''
|
||||||
|
A Haskell compiler which aims to produce the most efficient programs
|
||||||
|
'';
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.aforemny ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -2280,6 +2280,11 @@ let
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jhc = callPackage ../development/compilers/jhc {
|
||||||
|
inherit (haskellPackages_ghc6123) ghc binary zlib utf8String readline fgl
|
||||||
|
regexCompat HsSyck random;
|
||||||
|
};
|
||||||
|
|
||||||
# Haskell and GHC
|
# Haskell and GHC
|
||||||
|
|
||||||
# Import Haskell infrastructure.
|
# Import Haskell infrastructure.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user