mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 18:34:41 +00:00
16 lines
470 B
Nix
16 lines
470 B
Nix
{ cabal, StateVar, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Hipmunk";
|
|
version = "5.2.0.13";
|
|
sha256 = "0ddf7cbwaswyszq9rs5jq353npbry8l2cc7p5wq9wq97yplz10bc";
|
|
buildDepends = [ StateVar transformers ];
|
|
meta = {
|
|
homepage = "https://github.com/meteficha/Hipmunk";
|
|
description = "A Haskell binding for Chipmunk";
|
|
license = "unknown";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|