mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
joker: init at 0.8.6
This commit is contained in:
parent
aa12eddb6c
commit
49e0be1d4d
|
@ -44,6 +44,7 @@
|
|||
anderspapitto = "Anders Papitto <anderspapitto@gmail.com>";
|
||||
andir = "Andreas Rammhold <andreas@rammhold.de>";
|
||||
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
|
||||
andrestylianos = "Andre S. Ramos <andre.stylianos@gmail.com>";
|
||||
andrewrk = "Andrew Kelley <superjoe30@gmail.com>";
|
||||
andsild = "Anders Sildnes <andsild@gmail.com>";
|
||||
aneeshusa = "Aneesh Agrawal <aneeshusa@gmail.com>";
|
||||
|
|
29
pkgs/development/interpreters/joker/default.nix
Normal file
29
pkgs/development/interpreters/joker/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ 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;
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
||||
]
|
|
@ -6451,6 +6451,8 @@ with pkgs;
|
|||
|
||||
jmeter = callPackage ../applications/networking/jmeter {};
|
||||
|
||||
joker = callPackage ../development/interpreters/joker {};
|
||||
|
||||
davmail = callPackage ../applications/networking/davmail {};
|
||||
|
||||
kanif = callPackage ../applications/networking/cluster/kanif { };
|
||||
|
|
Loading…
Reference in a new issue