1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/dimensional/default.nix
2013-12-02 16:26:22 +01:00

16 lines
480 B
Nix

{ cabal, numtype, time }:
cabal.mkDerivation (self: {
pname = "dimensional";
version = "0.12.2";
sha256 = "0b5w9g3xn74b7z4bcsfcijnj54r8cwbbd8129q61c3nhng1f896a";
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 ];
};
})