summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/vector-space-points/default.nix
blob: 2a5c1eb2fc4278cc84c78b4c3ec373403c517819 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal, newtype, vectorSpace }:

cabal.mkDerivation (self: {
  pname = "vector-space-points";
  version = "0.1.2.1";
  sha256 = "0prbmk48xdr2gbxqpv0g89xz5v3k9wps9v2gymkh32jag2lgzi66";
  buildDepends = [ newtype vectorSpace ];
  meta = {
    description = "A type for points, as distinct from vectors";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})