lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #19003 from siddharthist/lightyear/init

lightyear: init at 9420f9e

authored by

Jörg Thalheim and committed by
GitHub
57df3437 d286a688

+32
+32
pkgs/development/idris-modules/lightyear.nix
··· 1 + { build-idris-package 2 + , fetchFromGitHub 3 + , prelude 4 + , base 5 + , effects 6 + , lib 7 + , idris 8 + }: 9 + 10 + let 11 + date = "2016-08-01"; 12 + in 13 + build-idris-package { 14 + name = "lightyear-${date}"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "ziman"; 18 + repo = "lightyear"; 19 + rev = "9420f9e892e23a7016dea1a61d8ce43a6d4ecf15"; 20 + sha256 = "0xbjwq7sk4x78mi2zcqxbx7wziijlr1ayxihb1vml33lqmsgl1dn"; 21 + }; 22 + 23 + propagatedBuildInputs = [ prelude base effects ]; 24 + 25 + meta = { 26 + description = "Parser combinators for Idris"; 27 + homepage = https://github.com/ziman/lightyear; 28 + license = lib.licenses.bsd2; 29 + maintainers = [ lib.maintainers.siddharthist ]; 30 + inherit (idris.meta) platforms; 31 + }; 32 + }