nixpkgs/pkgs/development/idris-modules/webgl.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
598 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, idrisscript
, lib
}:
build-idris-package {
2022-02-14 22:08:24 +00:00
pname = "webgl";
2018-03-16 11:40:17 +00:00
version = "2017-05-08";
2018-07-02 03:18:21 +00:00
idrisDeps = [ idrisscript ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "pierrebeaucamp";
repo = "idris-webgl";
rev = "1b4ee00a06b0bccfe33eea0fa8f068cdae690e9e";
sha256 = "097l2pj8p33d0n3ryb8y2vp0n5isnc8bkdnad3y6raa9z1xjn3d6";
};
meta = {
description = "Idris library to interact with WebGL";
homepage = "https://github.com/pierrebeaucamp/idris-webgl";
2018-03-16 11:40:17 +00:00
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.brainrape ];
};
}