summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/safecopy/default.nix
blob: c700ff0df3d1bb9c92dc71e0a15b96e466babcb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, cereal, text, time }:

cabal.mkDerivation (self: {
  pname = "safecopy";
  version = "0.8.2";
  sha256 = "0l2kqymsxv244fahxcpxlrspk6xipz3br6j854ipbfh8b0bfvr4m";
  buildDepends = [ cereal text time ];
  meta = {
    homepage = "http://acid-state.seize.it/safecopy";
    description = "Binary serialization with version control";
    license = self.stdenv.lib.licenses.publicDomain;
    platforms = self.ghc.meta.platforms;
  };
})