New Haskell library: haskell-safecopy

This commit is contained in:
Rickard Nilsson 2013-04-19 07:07:44 +02:00
parent a24458c219
commit 8a3f6e8e76
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ cabal, cereal, text }:
cabal.mkDerivation (self: {
pname = "safecopy";
version = "0.8.2";
sha256 = "0l2kqymsxv244fahxcpxlrspk6xipz3br6j854ipbfh8b0bfvr4m";
isLibrary = true;
isExecutable = true;
buildDepends = [
cereal text
];
meta = {
homepage = "http://acid-state.seize.it/safecopy";
description = "Binary serialization with version control.";
license = self.stdenv.lib.licenses.publicDomain;
platforms = self.ghc.meta.platforms;
maintainers = [
];
};
})

View file

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