2013-10-20 15:06:40 +01:00
|
|
|
{ cabal, hspec, HUnit, QuickCheck, text, time }:
|
2011-08-07 23:00:36 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:00:36 +01:00
|
|
|
pname = "path-pieces";
|
2013-12-10 11:21:53 +00:00
|
|
|
version = "0.1.3.1";
|
|
|
|
sha256 = "140pkci5k6aa9ncxa29fn2p0g6lb79zci0k02nblv59qmj5hj8ic";
|
2012-04-03 07:31:11 +01:00
|
|
|
buildDepends = [ text time ];
|
2013-10-20 15:06:40 +01:00
|
|
|
testDepends = [ hspec HUnit QuickCheck text ];
|
2011-08-07 23:00:36 +01:00
|
|
|
meta = {
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Components of paths";
|
2011-08-07 23:00:36 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:00:36 +01:00
|
|
|
};
|
|
|
|
})
|