mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
haskell: sbv 3.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
caf98828bb
commit
57cfb4315e
19
pkgs/development/libraries/haskell/sbv/default.nix
Normal file
19
pkgs/development/libraries/haskell/sbv/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ 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;
|
||||
};
|
||||
})
|
|
@ -2207,6 +2207,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
SafeSemaphore = callPackage ../development/libraries/haskell/SafeSemaphore {};
|
||||
|
||||
sbv = callPackage ../development/libraries/haskell/sbv {};
|
||||
|
||||
scientific = callPackage ../development/libraries/haskell/scientific {};
|
||||
|
||||
scotty = callPackage ../development/libraries/haskell/scotty {};
|
||||
|
|
Loading…
Reference in a new issue