nixpkgs/pkgs/development/idris-modules/tparsec.nix
zowoq 31f5dd3f36 treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00

28 lines
612 B
Nix

{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
name = "tparsec";
version = "2020-02-11";
ipkgName = "TParsec";
idrisDeps = [ contrib ];
src = fetchFromGitHub {
owner = "gallais";
repo = "idris-tparsec";
rev = "943c64dfcb4e1582696f68312fad88145dc3a8e4";
sha256 = "0pyhkafhx2pwim91ada6qrgacvahl9bpv5m486y8fph4qzf4z6mx";
};
meta = {
description = "TParsec - Total Parser Combinators in Idris";
homepage = "https://github.com/gallais/idris-tparsec";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.brainrape ];
};
}