1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

haskell-spoon: add version 0.3.1

This commit is contained in:
Peter Simons 2014-05-01 12:19:40 +02:00
parent 39c3cb1d99
commit e81ac36bff
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal, deepseq }:
cabal.mkDerivation (self: {
pname = "spoon";
version = "0.3.1";
sha256 = "1m41k0mfy6fpfrv2ym4m5jsjaj9xdfl2iqpppd3c4d0fffv51cxr";
buildDepends = [ deepseq ];
meta = {
description = "Catch errors thrown from pure computations";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2321,6 +2321,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
sparse = callPackage ../development/libraries/haskell/sparse {};
spoon = callPackage ../development/libraries/haskell/spoon {};
srcloc = callPackage ../development/libraries/haskell/srcloc {};
stateref = callPackage ../development/libraries/haskell/stateref {};