nixpkgs/pkgs/development/libraries/haskell/dimensional/default.nix
Peter Simons bbc7b11572 haskell-dimensional: updated to version 0.10.2
svn path=/nixpkgs/trunk/; revision=32461
2012-02-21 16:41:30 +00:00

19 lines
531 B
Nix

{ cabal, numtype, time }:
cabal.mkDerivation (self: {
pname = "dimensional";
version = "0.10.2";
sha256 = "14idyacd38a2kc97hp773j8iiim2lxh9czr8gp12m66w4n603znn";
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
self.stdenv.lib.maintainers.simons
];
};
})