Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 50da0b301997
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ac7ed3b91fb8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 19, 2017

  1. Copy the full SHA
    523444d View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    ac7ed3b View commit details
Showing with 15 additions and 0 deletions.
  1. +15 −0 pkgs/top-level/lua-packages.nix
15 changes: 15 additions & 0 deletions pkgs/top-level/lua-packages.nix
Original file line number Diff line number Diff line change
@@ -151,6 +151,21 @@ let
};
};

luaposix = buildLuaPackage rec {
name = "posix-${version}";
version = "33.4.0";
src = fetchurl {
url = "https://github.com/luaposix/luaposix/archive/release-v${version}.tar.gz";
sha256 = "e66262f5b7fe1c32c65f17a5ef5ffb31c4d1877019b4870a5d373e2ab6526a21";
};
buildInputs = [ perl ];
meta = {
description = "Lua bindings for POSIX API";
homepage = "https://github.com/luaposix/luaposix";
hydraPlatforms = stdenv.lib.platforms.unix;
};
};

lpty = buildLuaPackage rec {
name = "lpty-${version}";
version = "1.1.1";