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