32 lines
764 B
Nix
32 lines
764 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "joker-${version}";
|
|
version = "0.12.2";
|
|
|
|
goPackagePath = "github.com/candid82/joker";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "candid82";
|
|
repo = "joker";
|
|
sha256 = "0cqz8k53fzz3xqx9czk3hgq164dsbvnk51s0j29g1bmkbl51c2vm";
|
|
};
|
|
|
|
preBuild = "go generate ./...";
|
|
|
|
dontInstallSrc = true;
|
|
|
|
excludedPackages = "gen"; # Do not install private generators.
|
|
|
|
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 ];
|
|
};
|
|
}
|