From 767a67df0831d845ad1ee2bd86e8beea3a2014b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Tue, 25 Dec 2018 11:36:31 +0100 Subject: [PATCH] avoid being considered a binary-only package by Nimble --- rlp.nimble | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rlp.nimble b/rlp.nimble index 7069f5e..125eb6c 100644 --- a/rlp.nimble +++ b/rlp.nimble @@ -7,6 +7,8 @@ description = "RLP serialization library for Nim" license = "Apache License 2.0" skipDirs = @["tests"] bin = @["rlp/bin/rlp_inspect"] +# avoid being considered a binary-only package: https://github.com/nim-lang/nimble/blob/66d79bf9a0970542351988fa31f487a1e70144f7/src/nimblepkg/packageparser.nim#L280 +installExt = @["nim"] requires "nim >= 0.17.0", "ranges"