depot/pkgs/development/idris-modules/farrp.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
597 B
Nix

{ build-idris-package
, fetchFromGitHub
, effects
, lib
}:
build-idris-package {
pname = "farrp";
version = "2018-02-13";
idrisDeps = [ effects ];
src = fetchFromGitHub {
owner = "lambda-11235";
repo = "FarRP";
rev = "d592957232968743f8862e49d5a8d52e13340444";
sha256 = "1zrf750d7x1cz7kkgcx4ipa87hkg10adwii4qqvz9vpjap7vh7h0";
};
meta = {
description = "Arrowized FRP library for Idris with static safety guarantees";
homepage = "https://github.com/lambda-11235/FarRP";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}