nixpkgs/pkgs/development/libraries/haskell/cautious-file/default.nix
Peter Simons ff6f8891d7 cautious-file: updated to version 1.0
svn path=/nixpkgs/trunk/; revision=28333
2011-08-07 22:02:09 +00:00

17 lines
525 B
Nix

{cabal} :
cabal.mkDerivation (self : {
pname = "cautious-file";
version = "1.0";
sha256 = "1s2la91vk9c99bj0ipzc4r6w81rcs4jfmn0xr1cgjab00bzj880q";
meta = {
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;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [
self.stdenv.lib.maintainers.simons
self.stdenv.lib.maintainers.andres
];
};
})