2017-10-29 23:09:00 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "joker-${version}";
|
2018-11-08 22:19:06 +00:00
|
|
|
version = "0.10.1";
|
2017-10-29 23:09:00 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/candid82/joker";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "candid82";
|
|
|
|
repo = "joker";
|
2018-11-08 22:19:06 +00:00
|
|
|
sha256 = "1c3p61jmlljljbiwsylmfa75pi00y7yj5wabx1rxmpswc41g5mab";
|
2017-10-29 23:09:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preBuild = "go generate ./...";
|
|
|
|
|
|
|
|
dontInstallSrc = true;
|
|
|
|
|
2017-11-04 07:03:06 +00:00
|
|
|
excludedPackages = "gen"; # Do not install private generators.
|
|
|
|
|
2017-10-29 23:09:00 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|