2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, filepath }:
|
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";
|
2012-03-22 12:17:49 +01:00
|
|
|
version = "1.0.1";
|
|
|
|
sha256 = "0mlgchvdhw9lhml4pqmxxvx1zcqmkcyl3yx6w3zp0df200njzsws";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ filepath ];
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-15 23:10:06 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|