Skip to content

Commit

Permalink
urn: init at 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazedProgrammer committed May 28, 2018
1 parent f3fcf1b commit 4b5e23d
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
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

0 comments on commit 4b5e23d

Please sign in to comment.