7869d16545
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb3
, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl,
|
|
bison, re2c, sconsPackages,
|
|
libcxx
|
|
}:
|
|
|
|
let
|
|
version = "4.5.4";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "gringo";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/potassco/gringo/${version}/gringo-${version}-source.tar.gz";
|
|
sha256 = "16k4pkwyr2mh5w8j91vhxh9aff7f4y31npwf09w6f8q63fxvpy41";
|
|
};
|
|
|
|
buildInputs = [ bison re2c sconsPackages.scons_3_1_2 ];
|
|
|
|
patches = [
|
|
./gringo-4.5.4-cmath.patch
|
|
./gringo-4.5.4-to_string.patch
|
|
];
|
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
substituteInPlace ./SConstruct \
|
|
--replace \
|
|
"env['CXX'] = 'g++'" \
|
|
"env['CXX'] = '$CXX'"
|
|
|
|
substituteInPlace ./SConstruct \
|
|
--replace \
|
|
"env['CPPPATH'] = []" \
|
|
"env['CPPPATH'] = ['${lib.getDev libcxx}/include/c++/v1']"
|
|
|
|
substituteInPlace ./SConstruct \
|
|
--replace \
|
|
"env['LIBPATH'] = []" \
|
|
"env['LIBPATH'] = ['${lib.getLib libcxx}/lib']"
|
|
'';
|
|
|
|
buildPhase = ''
|
|
scons WITH_PYTHON= --build-dir=release
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp build/release/gringo $out/bin/gringo
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Converts input programs with first-order variables to equivalent ground programs";
|
|
homepage = "http://potassco.sourceforge.net/";
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.hakuch ];
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|