Skip to content

Instantly share code, notes, and snippets.

@nkaretnikov
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkaretnikov/ec2c1765b37b8db2324d to your computer and use it in GitHub Desktop.
Save nkaretnikov/ec2c1765b37b8db2324d to your computer and use it in GitHub Desktop.
tasty-quickcheck
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