souffle: 1.2.0 -> 1.5.1, co-maintain

Souffle has seen some significant upgrades in the past few years and now
has trimmed and replaced several of its more expensive dependencies,
such as boost, openjdk, etc.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2019-03-12 00:44:08 -05:00
parent ca3b67355c
commit 4f74e3abcf
No known key found for this signature in database
GPG key ID: 25D2038DEB08021D

View file

@ -1,40 +1,53 @@
{ stdenv, fetchFromGitHub
, boost, bison, flex, openjdk, doxygen
, perl, graphviz, ncurses, zlib, sqlite
, autoreconfHook }:
, perl, ncurses, zlib, sqlite, libffi
, autoreconfHook, mcpp, bison, flex, doxygen, graphviz
, makeWrapper
}:
let
toolsPath = stdenv.lib.makeBinPath [ mcpp ];
in
stdenv.mkDerivation rec {
version = "1.2.0";
name = "souffle-${version}";
version = "1.5.1";
src = fetchFromGitHub {
owner = "souffle-lang";
repo = "souffle";
rev = version;
sha256 = "1g8yvm40h102mab8lacpl1cwgqsw1js0s1yn4l84l9fjdvlh2ygd";
sha256 = "06sa250z3v8hs91p6cqdzlwwaq96j6zmfrrld1fzd1b620aa5iys";
};
nativeBuildInputs = [ autoreconfHook bison flex ];
nativeBuildInputs = [ autoreconfHook bison flex mcpp doxygen graphviz makeWrapper perl ];
buildInputs = [ ncurses zlib sqlite libffi ];
buildInputs = [
boost openjdk ncurses zlib sqlite doxygen perl graphviz
];
# these propagated inputs are needed for the compiled Souffle mode to work,
# since generated compiler code uses them. TODO: maybe write a g++ wrapper
# that adds these so we can keep the propagated inputs clean?
propagatedBuildInputs = [ ncurses zlib sqlite libffi ];
# see 565a8e73e80a1bedbb6cc037209c39d631fc393f and parent commits upstream for
# Wno-error fixes
patchPhase = ''
substituteInPlace ./src/Makefile.am \
--replace '-Werror' '-Werror -Wno-error=deprecated -Wno-error=other'
substituteInPlace configure.ac \
--replace "m4_esyscmd([git describe --tags --abbrev=0 --always | tr -d '\n'])" "${version}"
--replace "m4_esyscmd([git describe --tags --always | tr -d '\n'])" "${version}"
'';
# Without this, we get an obscure error about not being able to find a library version
# without saying what library it's looking for. Turns out it's searching global paths
# for boost and failing there, so we tell it what's what here.
configureFlags = [ "--with-boost-libdir=${boost}/lib" ];
postInstall = ''
wrapProgram "$out/bin/souffle" --prefix PATH : "${toolsPath}"
'';
outputs = [ "out" ];
meta = with stdenv.lib; {
description = "A translator of declarative Datalog programs into the C++ language";
homepage = "http://souffle-lang.github.io/";
platforms = platforms.unix;
maintainers = with maintainers; [ copumpkin wchresta ];
maintainers = with maintainers; [ thoughtpolice copumpkin wchresta ];
license = licenses.upl;
};
}