1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-06 23:31:34 +00:00
nixpkgs/pkgs/development/interpreters/joker/default.nix

24 lines
624 B
Nix
Raw Normal View History

2019-09-03 08:50:02 +01:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2017-10-29 23:09:00 +00:00
2019-09-03 08:50:02 +01:00
buildGoModule rec {
pname = "joker";
2019-09-03 08:50:02 +01:00
version = "0.12.7";
2017-10-29 23:09:00 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "candid82";
repo = "joker";
2019-09-03 08:50:02 +01:00
sha256 = "0panmhrg1i158xbvqvq3s3217smbj7ynwlaiks18pmss36xx9dk4";
2017-10-29 23:09:00 +00:00
};
2019-09-03 08:50:02 +01:00
modSha256 = "0i16vf7n1xfz5kp9w3fvyc9y9wgz4h396glgpdaznpxjr12rb43j";
2017-10-29 23:09:00 +00: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 ];
};
}