summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/filestore/default.nix
blob: d114a5aa3afda24235566cb6ff744c87f75f1987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ cabal, Diff, filepath, HUnit, mtl, parsec, split, time
, utf8String, xml
}:

cabal.mkDerivation (self: {
  pname = "filestore";
  version = "0.6";
  sha256 = "1bmsqxrkiqw791h0xwasry3jm56rjsyvl9l5r78209bhiv5v6xk0";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    Diff filepath HUnit mtl parsec split time utf8String xml
  ];
  jailbreak = true;
  meta = {
    description = "Interface for versioning file stores";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})