16 lines
478 B
Nix
16 lines
478 B
Nix
{ cabal, numtype, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "dimensional";
|
|
version = "0.13";
|
|
sha256 = "1nj8h79iq7pirqlj8iw1p782nm05xgym3469x7hlzaz3ig9nwgrg";
|
|
buildDepends = [ numtype time ];
|
|
meta = {
|
|
homepage = "http://dimensional.googlecode.com/";
|
|
description = "Statically checked physical dimensions";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|