1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

Added Hipmunk (Haskell chipmunk binding).

svn path=/nixpkgs/trunk/; revision=15443
This commit is contained in:
Andres Löh 2009-05-04 13:33:01 +00:00
parent 9a216af770
commit 393286fd47
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "Hipmunk";
version = "0.2.1";
sha256 = "6482f73367526fae215808098296c3e11e39c7466a441c5c475193a3ccccd4d9";
meta = {
description = "A Haskell binding for Chipmunk";
};
})

View file

@ -133,6 +133,10 @@ rec {
inherit (pkgs) sqlite;
};
Hipmunk = import ../development/libraries/haskell/Hipmunk {
inherit cabal;
};
hscolour = import ../development/libraries/haskell/hscolour {
inherit cabal;
};