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

27 lines
751 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, ghc, binary, zlib, utf8String, readline, fgl,
regexCompat, HsSyck, random }:
2012-10-07 15:52:43 +00:00
stdenv.mkDerivation rec {
name = "jhc-${version}";
version = "0.8.2";
2012-10-07 15:52:43 +00:00
src = fetchurl {
url = "http://repetae.net/dist/${name}.tar.gz";
sha256 = "0lrgg698mx6xlrqcylba9z4g1f053chrzc92ri881dmb1knf83bz";
2012-10-07 15:52:43 +00:00
};
buildInputs =
[ perl ghc binary zlib utf8String
readline fgl regexCompat HsSyck random
];
2012-10-07 15:52:43 +00:00
meta = {
description = "Whole-program, globally optimizing Haskell compiler";
2013-03-11 09:47:04 +00:00
homepage = "http://repetae.net/computer/jhc/";
license = stdenv.lib.licenses.bsd3;
2013-03-11 09:47:04 +00:00
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers;
[ aforemny simons thoughtpolice ];
2012-10-07 15:52:43 +00:00
};
}