From 30d2218e65e975c6ce5887d757f454f15af75a98 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 23 Jul 2019 14:57:09 +0200 Subject: Fix nix build and add to travis --- nix/tasty-hedgehog.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 nix/tasty-hedgehog.nix (limited to 'nix') diff --git a/nix/tasty-hedgehog.nix b/nix/tasty-hedgehog.nix new file mode 100644 index 0000000..e9a937d --- /dev/null +++ b/nix/tasty-hedgehog.nix @@ -0,0 +1,17 @@ +{ mkDerivation, base, hedgehog, stdenv, tagged, tasty +, tasty-expected-failure +}: +mkDerivation { + pname = "tasty-hedgehog"; + version = "0.2.0.0"; + sha256 = "5a107fc3094efc50663e4634331a296281318b38c9902969c2d2d215d754a182"; + revision = "6"; + editedCabalFile = "0d7s1474pvnyad6ilr5rvpama7s468ya9ns4ksbl0827z9vvga43"; + libraryHaskellDepends = [ base hedgehog tagged tasty ]; + testHaskellDepends = [ + base hedgehog tasty tasty-expected-failure + ]; + homepage = "https://github.com/qfpl/tasty-hedgehog"; + description = "Integration for tasty and hedgehog"; + license = stdenv.lib.licenses.bsd3; +} -- cgit