depot/pkgs/development/idris-modules/tlhydra.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

26 lines
598 B
Nix

{ build-idris-package
, fetchFromGitHub
, effects
, contrib
, lightyear
, lib
}:
build-idris-package {
pname = "tlhydra";
version = "2017-13-26";
idrisDeps = [ effects contrib lightyear ];
src = fetchFromGitHub {
owner = "Termina1";
repo = "tlhydra";
rev = "3fc9049447d9560fe16f4d36a2f2996494ac2b33";
sha256 = "1y3gcbc1ypv00vwa0w3v0n6ckf7gnz26xsfmgnidsaxzff3y0ymh";
};
meta = {
description = "Idris parser and serializer/deserealizer for TL language";
homepage = "https://github.com/Termina1/tlhydra";
maintainers = [ lib.maintainers.brainrape ];
};
}