summary refs log tree commit diff
path: root/pkgs/development/idris-modules/canvas.nix
blob: 0f6e258ee202ed52702a4c389370f89cede9e010 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ build-idris-package
, fetchFromGitHub
, lib
}:
build-idris-package  {
  name = "canvas";
  version = "2017-11-09";

  ipkgName = "idriscanvas";

  src = fetchFromGitHub {
    owner = "JinWuZhao";
    repo = "idriscanvas";
    rev = "2957c78c0721ec3afaee9d64e051a8f8d9b6f426";
    sha256 = "0jirkqciv3j1phpm2v6fmch40b5a01rmqdng16y8mihq1wb70ayy";
  };

  meta = {
    description = "Idris FFI binding for html5 canvas 2d api";
    homepage = https://github.com/JinWuZhao/idriscanvas;
    maintainers = [ lib.maintainers.brainrape ];
  };
}