2013-02-24 13:09:07 -08:00
|
|
|
{ cabal, fileLocation, hspec, HUnit, QuickCheck, text, time }:
|
2011-08-07 15:00:36 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 15:00:36 -07:00
|
|
|
pname = "path-pieces";
|
2012-09-24 03:06:07 -07:00
|
|
|
version = "0.1.2";
|
|
|
|
sha256 = "1cxsa8lq1f2jf86iv6f17nraiav8k2vzjxln1y7z45qhcp1sbbaa";
|
2012-04-02 23:31:11 -07:00
|
|
|
buildDepends = [ text time ];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [ fileLocation hspec HUnit QuickCheck text ];
|
2011-08-07 15:00:36 -07:00
|
|
|
meta = {
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Components of paths";
|
2011-08-07 15:00:36 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 15:00:36 -07:00
|
|
|
};
|
|
|
|
})
|