depot/pkgs/development/idris-modules/yampa.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
642 B
Nix

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