mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
406 B
Nix
15 lines
406 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "GlomeVec";
|
|
version = "0.1.2";
|
|
sha256 = "6023c11977bf16baf487235087e94f5a2f465e8403b8e40ab513e7879dd52639";
|
|
meta = {
|
|
homepage = "http://www.haskell.org/haskellwiki/Glome";
|
|
description = "Simple 3D vector library";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|