Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

urn: init at 0.7.1 #40611

Merged
merged 1 commit into from
Jun 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
61 changes: 61 additions & 0 deletions pkgs/development/compilers/urn/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{ stdenv, fetchFromGitLab, buildEnv, makeWrapper, lua, luajit, readline
, useLuaJit ? false
, extraLibraries ? []
}:

let
version = "0.7.1";
# Build a sort of "union package" with all the native dependencies we
# have: Lua (or LuaJIT), readline, etc. Then, we can depend on this
# and refer to ${urn-rt} instead of ${lua}, ${readline}, etc.
urn-rt = buildEnv {
name = "urn-rt-${version}";
ignoreCollisions = true;
paths = if useLuaJit then
[ luajit readline ]
else
[ lua ];
};

inherit (stdenv.lib) optionalString concatMapStringsSep;
in

stdenv.mkDerivation rec {
name = "urn-${optionalString (extraLibraries != []) "with-libraries-"}${version}";

src = fetchFromGitLab {
owner = "urn";
repo = "urn";
rev = "v${version}";
sha256 = "1vw0sljrczbwl7fl5d3frbpklb0larzyp7s7mwwprkb07b027sd5";
};

buildInputs = [ makeWrapper ];
# Any packages that depend on the compiler have a transitive
# dependency on the Urn runtime support.
propagatedBuildInputs = [ urn-rt ];

makeFlags = ["-B"];

installPhase = ''
mkdir -p $out/bin $out/lib
install -m 0755 bin/urn.lua $out/bin/urn
cp -r lib $out/lib/urn
wrapProgram $out/bin/urn \
--add-flags "-i $out/lib/urn --prelude $out/lib/urn/prelude.lisp" \
--add-flags "${concatMapStringsSep " " (x: "-i ${x.libraryPath}") extraLibraries}" \
--prefix PATH : ${urn-rt}/bin/ \
--prefix LD_LIBRARY_PATH : ${urn-rt}/lib/
'';

meta = with stdenv.lib; {
homepage = https://urn-lang.com;
description = "Yet another Lisp variant which compiles to Lua";
license = licenses.bsd3;
maintainers = with maintainers; [ CrazedProgrammer ];
};

passthru = {
inherit urn-rt;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6969,6 +6969,8 @@ with pkgs;

bupc = callPackage ../development/compilers/bupc { };

urn = callPackage ../development/compilers/urn { };

urweb = callPackage ../development/compilers/urweb { };

inherit (callPackage ../development/compilers/vala { })
Expand Down