nixpkgs/pkgs/development/libraries/haskell/units/default.nix

25 lines
754 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-07-22 11:22:23 +01:00
{ cabal, HUnitApprox, mtl, multimap, parsec, singletons, syb, tasty
, tastyHunit, thDesugar, vectorSpace
}:
2014-05-26 08:03:39 +01:00
cabal.mkDerivation (self: {
pname = "units";
2014-11-23 20:07:27 +00:00
version = "2.2";
sha256 = "1hd7klv0h2rsq971rbghvgy2921bf0zxikdsl26qw08yb0zirvza";
2014-07-22 11:22:23 +01:00
buildDepends = [
mtl multimap parsec singletons syb thDesugar vectorSpace
];
testDepends = [
HUnitApprox mtl multimap parsec singletons syb tasty tastyHunit
thDesugar vectorSpace
];
2014-05-26 08:03:39 +01:00
meta = {
2014-11-23 20:07:27 +00:00
homepage = "https://github.com/goldfirere/units";
2014-05-26 08:03:39 +01:00
description = "A domain-specific type system for dimensional analysis";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})