1{
2 build-idris-package,
3 fetchFromGitHub,
4 lib,
5}:
6build-idris-package {
7 pname = "comonad";
8 version = "2018-02-26";
9
10 src = fetchFromGitHub {
11 owner = "vmchale";
12 repo = "comonad";
13 rev = "23282592d4506708bdff79bfe1770c5f7a4ccb92";
14 sha256 = "0iiknx6gj4wr9s59iz439c63h3887pilymxrc80v79lj1lsk03ac";
15 };
16
17 meta = {
18 description = "Comonads for Idris";
19 homepage = "https://github.com/vmchale/comonad";
20 license = lib.licenses.bsd3;
21 maintainers = [ lib.maintainers.brainrape ];
22 };
23}