nixpkgs/pkgs/development/libraries/haskell/sbv/default.nix
2014-11-24 16:24:09 +01:00

23 lines
701 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, async, deepseq, filepath, HUnit, mtl, QuickCheck, random
, syb
}:
cabal.mkDerivation (self: {
pname = "sbv";
version = "3.2";
sha256 = "0hqibdl2bhxyc0akfy97j41mkp9s39ahdz25nyrzpjj89b9hzzi0";
isLibrary = true;
isExecutable = true;
buildDepends = [
async 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;
};
})