blob: 135a9b3bc780939199ce2b1013e4915bb37fccfd (
plain)
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
26
|
{
build-idris-package,
fetchFromGitHub,
bifunctors,
lib,
}:
build-idris-package {
pname = "yampa";
version = "2016-07-05";
ipkgName = "idris-yampa";
idrisDeps = [ bifunctors ];
src = fetchFromGitHub {
owner = "BartAdv";
repo = "idris-yampa";
rev = "2120dffb3ea0de906ba2b40080956c900457cf33";
sha256 = "0zp495zpbvsagdzrmg9iig652zbm34qc0gdr81x0viblwqxhicx6";
};
meta = {
description = "Idris implementation of Yampa FRP library as described in Reactive Programming through Dependent Types";
homepage = "https://github.com/BartAdv/idris-yampa";
maintainers = [ lib.maintainers.brainrape ];
};
}
|