joker: init at 0.8.6
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user