mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
23 lines
538 B
Nix
23 lines
538 B
Nix
{ build-idris-package
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
build-idris-package {
|
|
name = "fsm";
|
|
version = "2017-04-16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ctford";
|
|
repo = "flying-spaghetti-monster";
|
|
rev = "9253db1048d155b9d72dd5319f0a2072b574d406";
|
|
sha256 = "0n1kqpxysl3dji0zd8c47ir4144s0n3pb8i1mqp6ylma3r7rlg1l";
|
|
};
|
|
|
|
meta = {
|
|
description = "Comonads for Idris";
|
|
homepage = https://github.com/ctford/flying-spaghetti-monster;
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|