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

41 lines
1.3 KiB
Nix
Raw Normal View History

2018-05-07 05:16:50 +00:00
{ stdenv, fetchFromGitHub
, boost, bison, flex, openjdk, doxygen
, perl, graphviz, ncurses, zlib, sqlite
2018-05-07 05:16:50 +00:00
, autoreconfHook }:
2016-09-06 21:44:41 +00:00
stdenv.mkDerivation rec {
2018-05-01 18:56:06 +00:00
version = "1.2.0";
2016-09-06 21:44:41 +00:00
name = "souffle-${version}";
src = fetchFromGitHub {
owner = "souffle-lang";
repo = "souffle";
rev = version;
2018-05-01 18:56:06 +00:00
sha256 = "1g8yvm40h102mab8lacpl1cwgqsw1js0s1yn4l84l9fjdvlh2ygd";
2016-09-06 21:44:41 +00:00
};
2018-05-07 05:16:50 +00:00
nativeBuildInputs = [ autoreconfHook bison flex ];
2016-09-06 21:44:41 +00:00
buildInputs = [
2018-05-07 05:16:50 +00:00
boost openjdk ncurses zlib sqlite doxygen perl graphviz
2016-09-06 21:44:41 +00:00
];
patchPhase = ''
substituteInPlace configure.ac \
2018-05-01 18:56:06 +00:00
--replace "m4_esyscmd([git describe --tags --abbrev=0 --always | tr -d '\n'])" "${version}"
2016-09-06 21:44:41 +00:00
'';
# 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" ];
meta = with stdenv.lib; {
description = "A translator of declarative Datalog programs into the C++ language";
homepage = "http://souffle-lang.github.io/";
platforms = platforms.unix;
2018-05-01 18:56:06 +00:00
maintainers = with maintainers; [ copumpkin wchresta ];
2016-09-06 21:44:41 +00:00
license = licenses.upl;
};
}