Compare commits

..

No commits in common. "b25ea0c29d6171ce1bd9af55459245a5f7c1739f" and "307eef242915824327e6a45e2065ffd6a5da507a" have entirely different histories.

4 changed files with 8 additions and 10 deletions

View file

@ -84,9 +84,8 @@
direnv
rainbow-delimiters
aggressive-indent
python-docstring
nix-mode
lua-mode
python-docstring
# Media
emms

View file

@ -1,6 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [
(luajit.withPackages (ps: [
(lua.withPackages (ps: [
(ps.callPackage ./luarocks/scilua.nix {})
]))
];

View file

@ -1,13 +1,12 @@
{
buildLuarocksPackage,
fetchurl,
lua,
luaAtLeast,
luaOlder,
callPackage,
luajit,
openblas,
luaPackages,
}: let
xsys = callPackage ./xsys.nix {};
xsys = luaPackages.callPackage ./xsys.nix {};
in
buildLuarocksPackage {
pname = "sci";
@ -24,7 +23,7 @@ in
};
disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [luajit xsys openblas];
propagatedBuildInputs = [lua xsys];
meta = {
homepage = "https://github.com/stepelu/lua-sci";

View file

@ -1,9 +1,9 @@
{
buildLuarocksPackage,
fetchurl,
lua,
luaAtLeast,
luaOlder,
luajit,
}:
buildLuarocksPackage {
pname = "xsys";
@ -20,7 +20,7 @@ buildLuarocksPackage {
};
disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [luajit];
propagatedBuildInputs = [lua];
meta = {
homepage = "http://scilua.org/xsys.html";