2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, deepseq, text }:
|
2011-09-07 13:21:01 -07:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "system-filepath";
|
2014-03-30 13:07:07 -07:00
|
|
|
version = "0.4.10";
|
|
|
|
sha256 = "176g5jm1gd6lrkmhfz9qh5aqwfbpwyr30yknfcc49wl7jkfhisiq";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ deepseq text ];
|
2011-09-07 13:21:01 -07:00
|
|
|
meta = {
|
2011-12-22 04:19:10 -08:00
|
|
|
homepage = "https://john-millikin.com/software/haskell-filesystem/";
|
2011-09-07 13:21:01 -07:00
|
|
|
description = "High-level, byte-based file and directory path manipulations";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-07 13:21:01 -07:00
|
|
|
};
|
|
|
|
})
|