2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, numtype, time }:
|
2011-08-03 00:14:18 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-03 00:14:18 +02:00
|
|
|
pname = "dimensional";
|
2014-02-13 10:57:48 +01:00
|
|
|
version = "0.13";
|
|
|
|
sha256 = "1nj8h79iq7pirqlj8iw1p782nm05xgym3469x7hlzaz3ig9nwgrg";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ numtype time ];
|
2011-08-03 00:14:18 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://dimensional.googlecode.com/";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Statically checked physical dimensions";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-03 00:14:18 +02:00
|
|
|
};
|
|
|
|
})
|