2011-08-10 01:00:20 +02:00
|
|
|
{ cabal }:
|
2010-04-15 23:10:06 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 23:10:06 +02:00
|
|
|
pname = "cautious-file";
|
2011-08-08 00:02:09 +02:00
|
|
|
version = "1.0";
|
|
|
|
sha256 = "1s2la91vk9c99bj0ipzc4r6w81rcs4jfmn0xr1cgjab00bzj880q";
|
2010-04-15 23:10:06 +02:00
|
|
|
meta = {
|
2011-08-08 00:02:09 +02:00
|
|
|
description = "Ways to write a file cautiously, to reduce the chances of problems such as data loss due to crashes or power failures";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-08 00:02:09 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 01:00:20 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-08 00:02:09 +02:00
|
|
|
];
|
2010-04-15 23:10:06 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|