forked from mirrors/nixpkgs
57cfb4315e
Signed-off-by: Austin Seipp <aseipp@pobox.com>
20 lines
612 B
Nix
20 lines
612 B
Nix
{ cabal, deepseq, filepath, HUnit, mtl, QuickCheck, random, syb }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "sbv";
|
|
version = "3.0";
|
|
sha256 = "16k9f0x4amg7mm8ib22nyk1rngrbf9311gl2m15hbdq49jp8ik9i";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
deepseq filepath HUnit mtl QuickCheck random syb
|
|
];
|
|
testDepends = [ filepath HUnit syb ];
|
|
meta = {
|
|
homepage = "http://leventerkok.github.com/sbv/";
|
|
description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|