summary refs log tree commit diff
path: root/pkgs/development/idris-modules/farrp.nix
blob: 88f852ba20c050307fed32860abfbf2e3758da02 (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
24
25
{ build-idris-package
, fetchFromGitHub
, effects
, lib
}:
build-idris-package  {
  name = "farrp";
  version = "2018-02-13";

  idrisDeps = [ effects ];

  src = fetchFromGitHub {
    owner = "lambda-11235";
    repo = "FarRP";
    rev = "d592957232968743f8862e49d5a8d52e13340444";
    sha256 = "1zrf750d7x1cz7kkgcx4ipa87hkg10adwii4qqvz9vpjap7vh7h0";
  };

  meta = {
    description = "Arrowized FRP library for Idris with static safety guarantees";
    homepage = "https://github.com/lambda-11235/FarRP";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
  };
}