From be4cb037ff97357cf0d47fe0147b649f22eee66c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 14 Aug 2013 11:51:54 +0200 Subject: [PATCH] haskell-monadcryptorandom: fix build with recent versions of tagged --- .../libraries/haskell/monadcryptorandom/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/haskell/monadcryptorandom/default.nix b/pkgs/development/libraries/haskell/monadcryptorandom/default.nix index e955bb14a72..bb0514575a8 100644 --- a/pkgs/development/libraries/haskell/monadcryptorandom/default.nix +++ b/pkgs/development/libraries/haskell/monadcryptorandom/default.nix @@ -1,10 +1,11 @@ -{ cabal, cryptoApi, mtl, tagged, transformers }: +{ cabal, fetchurl, cryptoApi, mtl, tagged, transformers }: cabal.mkDerivation (self: { pname = "monadcryptorandom"; version = "0.5.2"; sha256 = "0a0qx331c1kvhmwwam7pbbrnq8ky3spfnw6zsz6rz7g1lk1hfawn"; buildDepends = [ cryptoApi mtl tagged transformers ]; + patches = [ (fetchurl { url = "https://github.com/TomMD/monadcryptorandom/pull/5.patch"; sha256 = "1mcil5w40gfy3hjnrpbgzciz65aygqpghgma0hckjb6xa694a71l"; }) ]; meta = { homepage = "https://github.com/TomMD/monadcryptorandom"; description = "A monad for using CryptoRandomGen";