Merge pull request #30942 from andrestylianos/joker
joker: init at 0.8.6
This commit is contained in:
commit
3ea077e638
@ -44,6 +44,7 @@
|
|||||||
anderspapitto = "Anders Papitto <anderspapitto@gmail.com>";
|
anderspapitto = "Anders Papitto <anderspapitto@gmail.com>";
|
||||||
andir = "Andreas Rammhold <andreas@rammhold.de>";
|
andir = "Andreas Rammhold <andreas@rammhold.de>";
|
||||||
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
|
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
|
||||||
|
andrestylianos = "Andre S. Ramos <andre.stylianos@gmail.com>";
|
||||||
andrewrk = "Andrew Kelley <superjoe30@gmail.com>";
|
andrewrk = "Andrew Kelley <superjoe30@gmail.com>";
|
||||||
andsild = "Anders Sildnes <andsild@gmail.com>";
|
andsild = "Anders Sildnes <andsild@gmail.com>";
|
||||||
aneeshusa = "Aneesh Agrawal <aneeshusa@gmail.com>";
|
aneeshusa = "Aneesh Agrawal <aneeshusa@gmail.com>";
|
||||||
|
31
pkgs/development/interpreters/joker/default.nix
Normal file
31
pkgs/development/interpreters/joker/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ 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;
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
11
pkgs/development/interpreters/joker/deps.nix
Normal file
11
pkgs/development/interpreters/joker/deps.nix
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
goPackagePath = "github.com/chzyer/readline";
|
||||||
|
fetch = {
|
||||||
|
type = "git";
|
||||||
|
url = "https://github.com/chzyer/readline";
|
||||||
|
rev = "6a4bc7b4feaeff8feb63f87d5fb2cf3e3610a559";
|
||||||
|
sha256 = "1ny3rws671sa9bj5phg6k1rprlgzys73kfdr14vxq4wnwz84zbrc";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
]
|
@ -6436,6 +6436,8 @@ with pkgs;
|
|||||||
|
|
||||||
jmeter = callPackage ../applications/networking/jmeter {};
|
jmeter = callPackage ../applications/networking/jmeter {};
|
||||||
|
|
||||||
|
joker = callPackage ../development/interpreters/joker {};
|
||||||
|
|
||||||
davmail = callPackage ../applications/networking/davmail {};
|
davmail = callPackage ../applications/networking/davmail {};
|
||||||
|
|
||||||
kanif = callPackage ../applications/networking/cluster/kanif { };
|
kanif = callPackage ../applications/networking/cluster/kanif { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user