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