2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, systemFilepath, text, time }:
|
2011-09-07 21:21:01 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "system-fileio";
|
2013-01-16 11:42:13 +00:00
|
|
|
version = "0.3.11";
|
|
|
|
sha256 = "0hnjrzhzbqx9l93c8dnl5b54f72ki584cn3jh8m6z56x2lrs24zb";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ systemFilepath text time ];
|
2011-09-07 21:21:01 +01:00
|
|
|
meta = {
|
2012-02-06 14:27:52 +00:00
|
|
|
homepage = "https://john-millikin.com/software/haskell-filesystem/";
|
|
|
|
description = "Consistent filesystem interaction across GHC versions";
|
2011-09-07 21:21:01 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-07 21:21:01 +01:00
|
|
|
};
|
|
|
|
})
|