58f3a6e25e
- accelerate-cuda: updated to version 0.12.1.0 - accelerate-examples: updated to version 0.12.1.0 - accelerate-io: updated to version 0.12.1.0 - accelerate: updated to version 0.12.1.0 - hakyll: updated to version 3.3.0.1 - pandoc: updated to version 1.9.4.1 - Vec: updated to version 0.9.9 svn path=/nixpkgs/trunk/; revision=34431
15 lines
446 B
Nix
15 lines
446 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Vec";
|
|
version = "0.9.9";
|
|
sha256 = "1ms6w8003aplcndqglw2gxj0ji4m3jki9ndj5gni24w8dqiy5x47";
|
|
meta = {
|
|
homepage = "http://graphics.cs.ucdavis.edu/~sdillard/Vec";
|
|
description = "Fixed-length lists and low-dimensional linear algebra";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|