Last active
August 29, 2015 14:17
-
-
Save nkaretnikov/ec2c1765b37b8db2324d to your computer and use it in GitHub Desktop.
tasty-quickcheck
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with (import <nixpkgs> {}).pkgs; | |
let haskellPackages' = haskellngPackages.override { | |
overrides = self: super: { | |
tasty = self.callPackage ../core {}; | |
}; | |
}; | |
pkg = haskellPackages'.callPackage | |
({ mkDerivation, base, cabal-install, pcre-light, QuickCheck | |
, stdenv, tagged, tasty, tasty-hunit | |
}: | |
mkDerivation { | |
pname = "tasty-quickcheck"; | |
version = "0.8.3.2"; | |
src = ./.; | |
buildDepends = [ base QuickCheck tagged tasty ]; | |
testDepends = [ base pcre-light tasty tasty-hunit ]; | |
buildTools = [ cabal-install ]; | |
homepage = "http://documentup.com/feuerbach/tasty"; | |
description = "QuickCheck support for the Tasty test framework"; | |
license = stdenv.lib.licenses.mit; | |
}) {}; | |
in | |
pkg.env |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment