Skip to content

Commit

Permalink
lua*Packages.lfs: init at 1.7.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Jul 8, 2018
1 parent 784f543 commit bfc1238
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pkgs/top-level/lua-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,26 @@ let
};
};

lfs = buildLuaPackage rec {
name = "lfs-${version}";
version = "1.7.0.2";

src = fetchFromGitHub {
owner = "keplerproject";
repo = "luafilesystem";
rev = "v" + stdenv.lib.replaceStrings ["."] ["_"] version;
sha256 = "0zmprgkm9zawdf9wnw0v3w6ibaj442wlc6alp39hmw610fl4vghi";
};

meta = with stdenv.lib; {
description = "Portable library for filesystem operations";
homepage = https://keplerproject.github.com/luafilesystem;
license = licenses.mit;
maintainers = with maintainers; [ vcunat ];
platforms = platforms.all;
};
};

lpeg = buildLuaPackage rec {
name = "lpeg-${version}";
version = "0.12";
Expand Down

0 comments on commit bfc1238

Please sign in to comment.