haskell-hspec-checkers: re-generate expression with cabal2nix

This commit is contained in:
Peter Simons 2014-10-22 22:29:30 +02:00
parent e9e9ab0981
commit 74aef8fc3c

View file

@ -1,13 +1,14 @@
{ cabal, hspec, checkers }:
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, checkers, hspec }:
cabal.mkDerivation (self: {
pname = "hspec-checkers";
version = "0.1.0";
sha256 = "043qzgjp9ch9wqm269dd87jn8wk5c90q25098hnz8ilv5pnywk6d";
buildDepends = [ hspec checkers ];
testDepends = [ hspec checkers ];
buildDepends = [ checkers hspec ];
testDepends = [ checkers hspec ];
meta = {
homepage = "https://github.com/zalora/hspec-checkers";
description = "Allows to use checkers properties from hspec";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;