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