2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, deepseq, text }:
|
2011-09-07 22:21:01 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "system-filepath";
|
2012-02-07 11:34:33 +01:00
|
|
|
version = "0.4.6";
|
|
|
|
sha256 = "0p8lf10b5zn2gw5klpjc397q892cydvnl677srj9rk3lhmsm5jjl";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ deepseq text ];
|
2011-09-07 22:21:01 +02:00
|
|
|
meta = {
|
2011-12-22 13:19:10 +01:00
|
|
|
homepage = "https://john-millikin.com/software/haskell-filesystem/";
|
2011-09-07 22:21:01 +02:00
|
|
|
description = "High-level, byte-based file and directory path manipulations";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-07 22:21:01 +02:00
|
|
|
};
|
|
|
|
})
|