2015-04-23 13:21:15 +00:00
|
|
|
{ stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }:
|
2015-03-06 22:43:38 +00:00
|
|
|
|
2015-04-23 13:21:15 +00:00
|
|
|
let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [shuffle hashable mtl network uhc-util uulib] );
|
2015-03-06 22:43:38 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2015-06-15 08:47:53 +00:00
|
|
|
# Important:
|
|
|
|
# The commits "Fixate/tag v..." are the released versions.
|
|
|
|
# Ignore the "bumped version to ...." commits, they do not
|
|
|
|
# correspond to releases.
|
|
|
|
version = "1.1.9.1.20150611";
|
2015-03-06 22:43:38 +00:00
|
|
|
name = "uhc-${version}";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/UU-ComputerScience/uhc.git";
|
2015-06-15 08:47:53 +00:00
|
|
|
rev = "b80098e07d12900f098ea964b1d2b3f38e5c9900";
|
|
|
|
sha256 = "14qg1fd9pgbczcmn5ggkd9674qadx1izmz8363ps7c207dg94f9x";
|
2015-03-06 22:43:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postUnpack = "sourceRoot=\${sourceRoot}/EHC";
|
|
|
|
|
2015-04-23 13:21:15 +00:00
|
|
|
buildInputs = [ m4 wrappedGhc clang libtool ];
|
2015-03-06 22:43:38 +00:00
|
|
|
|
|
|
|
configureFlags = [ "--with-gcc=${clang}/bin/clang" ];
|
|
|
|
|
|
|
|
# UHC builds packages during compilation; these are by default
|
|
|
|
# installed in the user-specific package config file. We do not
|
|
|
|
# want that, and hack the build process to use a temporary package
|
|
|
|
# configuration file instead.
|
|
|
|
preConfigure = ''
|
2015-04-30 09:45:05 +00:00
|
|
|
p=`pwd`/uhc-local-packages/
|
|
|
|
ghc-pkg init $p
|
2015-03-06 22:43:38 +00:00
|
|
|
sed -i "s|--user|--package-db=$p|g" mk/shared.mk.in
|
|
|
|
sed -i "s|-fglasgow-exts|-fglasgow-exts -package-conf=$p|g" mk/shared.mk.in
|
|
|
|
sed -i "s|/bin/date|${coreutils}/bin/date|g" mk/dist.mk
|
|
|
|
sed -i "s|/bin/date|${coreutils}/bin/date|g" mk/config.mk.in
|
|
|
|
sed -i "s|--make|--make -package-db=$p|g" src/ehc/files2.mk
|
|
|
|
sed -i "s|--make|--make -package-db=$p|g" src/gen/files.mk
|
|
|
|
'';
|
|
|
|
|
|
|
|
inherit clang;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "http://www.cs.uu.nl/wiki/UHC";
|
|
|
|
description = "Utrecht Haskell Compiler";
|
|
|
|
maintainers = [ maintainers.phausmann ];
|
2015-03-30 16:47:38 +00:00
|
|
|
|
|
|
|
# UHC i686 support is broken, see
|
|
|
|
# https://github.com/UU-ComputerScience/uhc/issues/52
|
|
|
|
#
|
|
|
|
# Darwin build is broken as well at the moment.
|
|
|
|
# On Darwin, the GNU libtool is used, which does not
|
|
|
|
# support the -static flag and thus breaks the build.
|
|
|
|
platforms = ["x86_64-linux"];
|
2015-08-15 19:32:00 +00:00
|
|
|
broken = true; # https://github.com/UU-ComputerScience/uhc/issues/60
|
2015-03-06 22:43:38 +00:00
|
|
|
};
|
|
|
|
}
|