My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/canvas.nix

23 lines
543 B

{ build-idris-package
, fetchFromGitHub
, lib
}:
build-idris-package {
pname = "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 ];
};
}