nixpkgs/pkgs/applications/science/logic/boolector/default.nix

24 lines
667 B
Nix
Raw Normal View History

2017-07-18 08:20:34 +00:00
{ stdenv, fetchurl }:
2017-07-18 08:20:34 +00:00
stdenv.mkDerivation rec {
name = "boolector-${version}";
version = "2.4.1";
src = fetchurl {
url = "http://fmv.jku.at/boolector/boolector-${version}-with-lingeling-bbc.tar.bz2";
sha256 = "0mdf7hwix237pvknvrpazcx6s3ininj5k7vhysqjqgxa7lxgq045";
};
installPhase = ''
2017-07-18 08:20:34 +00:00
mkdir $out
mv boolector/bin $out
'';
meta = {
2017-07-18 08:20:34 +00:00
license = stdenv.lib.licenses.unfreeRedistributable;
description = "An extremely fast SMT solver for bit-vectors and arrays";
homepage = "http://fmv.jku.at/boolector";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
2017-07-18 08:20:34 +00:00
}