mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
28 lines
673 B
Nix
28 lines
673 B
Nix
{ build-idris-package
|
|
, fetchFromGitHub
|
|
, prelude
|
|
, bifunctors
|
|
, lib
|
|
, idris
|
|
}:
|
|
build-idris-package {
|
|
name = "yampa";
|
|
version = "2016-07-05";
|
|
|
|
idrisDeps = [ prelude 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 ];
|
|
inherit (idris.meta) platforms;
|
|
};
|
|
}
|