2013-11-01 09:28:57 +00:00
|
|
|
{ cabal, distributive, doctest, filepath }:
|
2013-08-11 17:20:18 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "intervals";
|
2013-11-01 09:28:57 +00:00
|
|
|
version = "0.4";
|
|
|
|
sha256 = "0w33arfv1hd3a3l4rvn67nh5q6w05jj6hjlbjmbmrjyhwg35jnac";
|
|
|
|
buildDepends = [ distributive ];
|
|
|
|
testDepends = [ doctest filepath ];
|
2013-08-11 17:20:18 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ekmett/intervals";
|
|
|
|
description = "Interval Arithmetic";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|