summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/cautious-file/default.nix
blob: 44ed255bb634f36383aa82c89713bc2591cc9f61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, filepath }:

cabal.mkDerivation (self: {
  pname = "cautious-file";
  version = "1.0.2";
  sha256 = "1sw5ngwrarq1lsd4c6v2wdmgbhkkq6kpybb62r8ccm11ddgn3yiq";
  buildDepends = [ filepath ];
  doCheck = false;
  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.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})