2014-05-16 19:28:17 +00:00
|
|
|
{ cabal, cereal, lens, quickcheckInstances, tasty, tastyQuickcheck
|
|
|
|
, text, time, vector
|
|
|
|
}:
|
2013-04-19 05:07:44 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "safecopy";
|
2014-05-16 19:28:17 +00:00
|
|
|
version = "0.8.3";
|
|
|
|
sha256 = "10xd42a1i84fwiy3db0ji4bd8ssk9jqysqwc00wdcdjyp50c333n";
|
|
|
|
buildDepends = [ cereal text time vector ];
|
|
|
|
testDepends = [
|
|
|
|
cereal lens quickcheckInstances tasty tastyQuickcheck time vector
|
|
|
|
];
|
2013-04-19 05:07:44 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://acid-state.seize.it/safecopy";
|
2013-04-19 08:47:36 +00:00
|
|
|
description = "Binary serialization with version control";
|
2013-04-19 05:07:44 +00:00
|
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|