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

{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
pname = "iaia";
version = "2017-11-10";
idrisDeps = [ contrib ];
src = fetchFromGitHub {
owner = "sellout";
repo = "Iaia";
rev = "dce68d2b63a26dad7c94459773eae2d42686fa05";
sha256 = "0209fhv8x3sw6ijrwc8a85pch97z821ygaz78va3l274xam4l659";
};
meta = {
description = "Recursion scheme library for Idris";
homepage = "https://github.com/sellout/Iaia";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}