2013-10-20 07:06:40 -07:00
|
|
|
{ cabal, 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";
|
2013-12-10 03:21:53 -08:00
|
|
|
version = "0.1.3.1";
|
|
|
|
sha256 = "140pkci5k6aa9ncxa29fn2p0g6lb79zci0k02nblv59qmj5hj8ic";
|
2012-04-02 23:31:11 -07:00
|
|
|
buildDepends = [ text time ];
|
2013-10-20 07:06:40 -07:00
|
|
|
testDepends = [ 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
|
|
|
};
|
|
|
|
})
|