haskell-Safe: add version 0.1

This commit is contained in:
Peter Simons 2013-02-24 22:17:41 +01:00
parent 13f491df46
commit f99c54d198
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "Safe";
version = "0.1";
sha256 = "0ybi5r4635yjx41ig54bm426fbdzrivc5kn8fwqxmzm62ai0v623";
meta = {
homepage = "http://www-users.cs.york.ac.uk/~ndm/projects/libraries.php";
description = "Library for safe (pattern match free) functions";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1550,6 +1550,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
safe = callPackage ../development/libraries/haskell/safe {};
Safe = callPackage ../development/libraries/haskell/Safe {};
SafeSemaphore = callPackage ../development/libraries/haskell/SafeSemaphore {};
sendfile = callPackage ../development/libraries/haskell/sendfile {};