summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/intervals/default.nix
blob: 73e1d2d71971b484370d0a95eb620828ff83fe53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, distributive, doctest, filepath }:

cabal.mkDerivation (self: {
  pname = "intervals";
  version = "0.7";
  sha256 = "00kwq57x72xi5kca7symb98nzs1j82r6bkgvr83aqpvq0ql9ka9d";
  buildDepends = [ distributive ];
  testDepends = [ doctest filepath ];
  meta = {
    homepage = "http://github.com/ekmett/intervals";
    description = "Interval Arithmetic";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})