2019-09-03 10:50:02 +03:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
2017-10-30 02:09:00 +03:00
|
|
|
|
2019-09-03 10:50:02 +03:00
|
|
|
buildGoModule rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "joker";
|
2019-10-22 07:19:36 +03:00
|
|
|
version = "0.12.9";
|
2017-10-30 02:09:00 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "candid82";
|
|
|
|
repo = "joker";
|
2019-10-22 07:19:36 +03:00
|
|
|
sha256 = "19n2pzs045mflyzgq3cpa4w2fbd0f77j5k6c4yc3gk0mcwgdxhs2";
|
2017-10-30 02:09:00 +03:00
|
|
|
};
|
|
|
|
|
2019-09-03 10:50:02 +03:00
|
|
|
modSha256 = "0i16vf7n1xfz5kp9w3fvyc9y9wgz4h396glgpdaznpxjr12rb43j";
|
2017-10-30 02:09:00 +03:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|