nixpkgs/pkgs/development/libraries/haskell/sbv/default.nix
Austin Seipp 57cfb4315e haskell: sbv 3.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-08 10:12:58 -05:00

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;
};
})