nixpkgs/pkgs/development/compilers/jhc/default.nix

31 lines
760 B
Nix
Raw Normal View History

2013-03-11 10:47:04 +01:00
{
2012-10-07 17:52:43 +02:00
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 = {
2013-03-11 10:47:04 +01:00
homepage = "http://repetae.net/computer/jhc/";
description = "A Haskell compiler which aims to produce the most efficient programs";
2012-10-07 17:52:43 +02:00
license = stdenv.lib.licenses.gpl2;
2013-03-11 10:47:04 +01:00
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.aforemny stdenv.lib.maintainers.simons ];
2012-10-07 17:52:43 +02:00
};
}