My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/yampa.nix

25 lines
642 B

{ 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 ];
};
}