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

26 lines
639 B
Nix
Raw Normal View History

2018-03-16 12:40:17 +01:00
{ build-idris-package
, fetchFromGitHub
, bifunctors
, lib
}:
build-idris-package {
name = "yampa";
version = "2016-07-05";
2018-09-18 10:38:59 +02:00
ipkgName = "idris-yampa";
2018-07-02 05:18:21 +02:00
idrisDeps = [ bifunctors ];
2018-03-16 12:40:17 +01:00
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 ];
};
}