Adding Kona: a K interpreter

svn path=/nixpkgs/trunk/; revision=27098
This commit is contained in:
Michael Raskin 2011-05-03 06:58:01 +00:00
parent db287c1b38
commit 26da7d3871
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,51 @@
x@{builderDefsPackage
, fetchgit
, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
["fetchgit"];
buildInputs = map (n: builtins.getAttr n x)
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
in
rec {
srcDrv = a.fetchgit {
url = "https://github.com/kevinlawler/kona.git";
inherit rev;
sha256 = "165ff5f3d1b510a1ad73ec465b4ed1b8ef44d7affa94f952781fea212c72d891";
};
src = "${srcDrv}/";
rev = "fddc2688ef515a653fb6";
version = "git-${rev}";
name = "kona-${version}";
inherit buildInputs;
/* doConfigure should be removed if not needed */
phaseNames = ["prepareOut" "doMakeInstall"];
makeFlags = ["PREFIX=\$out"];
prepareOut = a.fullDepEntry ''
ensureDir "$out/bin"
'' ["minInit" "defEnsureDir"];
meta = {
description = "An interpreter of K, APL-like programming language";
maintainers = with a.lib.maintainers;
[
raskin
];
platforms = with a.lib.platforms;
linux;
license = "free-noncopyleft";
};
passthru = {
updateInfo = {
downloadPage = "https://github.com/kevinlawler/kona";
};
};
}) x

View File

@ -2330,6 +2330,8 @@ let
kaffe = callPackage ../development/interpreters/kaffe { };
kona = callPackage ../development/interpreters/kona {};
lua4 = callPackage ../development/interpreters/lua-4 { };
lua5 = callPackage ../development/interpreters/lua-5 { };