nixpkgs/pkgs/development/libraries/haskell/filestore/default.nix
Peter Simons d18d66bd5f haskell-filestore: updated to version 0.4.1
svn path=/nixpkgs/trunk/; revision=32708
2012-02-29 19:24:47 +00:00

19 lines
606 B
Nix

{ cabal, Diff, filepath, parsec, split, time, utf8String, xml }:
cabal.mkDerivation (self: {
pname = "filestore";
version = "0.4.1";
sha256 = "02ki6b4rbmk463qmmqia7igkrsr7h1kxal94k6pikkikylx2f8r7";
buildDepends = [ Diff filepath parsec split time utf8String xml ];
meta = {
homepage = "http://johnmacfarlane.net/repos/filestore";
description = "Interface for versioning file stores";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})