joker: init at 0.8.6

This commit is contained in:
André Stylianos Ramos
2017-11-04 06:36:16 +01:00
parent aa12eddb6c
commit 49e0be1d4d
4 changed files with 43 additions and 0 deletions
@@ -0,0 +1,29 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "joker-${version}";
version = "0.8.6";
goPackagePath = "github.com/candid82/joker";
src = fetchFromGitHub {
rev = "v${version}";
owner = "candid82";
repo = "joker";
sha256 = "0m6xi1jgss6f4maxqpwjyyhyyc71wy5a7jpm908m49xx80mz5ams";
};
preBuild = "go generate ./...";
dontInstallSrc = true;
goDeps = ./deps.nix;
meta = with stdenv.lib; {
homepage = https://github.com/candid82/joker;
description = "A small Clojure interpreter and linter written in Go";
license = licenses.epl10;
platforms = platforms.all;
maintainers = with maintainers; [ andrestylianos ];
};
}
@@ -0,0 +1,11 @@
[
{
goPackagePath = "github.com/chzyer/readline";
fetch = {
type = "git";
url = "https://github.com/chzyer/readline";
rev = "6a4bc7b4feaeff8feb63f87d5fb2cf3e3610a559";
sha256 = "1ny3rws671sa9bj5phg6k1rprlgzys73kfdr14vxq4wnwz84zbrc";
};
}
]