Merge pull request #21580 from rasendubi/lgi

luaPackages.lgi: 0.7.2 -> 0.9.1
This commit is contained in:
Michael Raskin 2017-01-02 14:13:29 +00:00 committed by GitHub
commit aa2f2d2667

View File

@ -382,18 +382,20 @@ let
lgi = stdenv.mkDerivation rec { lgi = stdenv.mkDerivation rec {
name = "lgi-${version}"; name = "lgi-${version}";
version = "0.7.2"; version = "0.9.1";
src = fetchzip { src = fetchFromGitHub {
url = "https://github.com/pavouk/lgi/archive/${version}.tar.gz"; owner = "pavouk";
sha256 = "10i2ssfs01d49fdmmriqzxc8pshys4rixhx30wzd9p1m1q47a5pn"; repo = "lgi";
rev = version;
sha256 = "09pbapjhyc3sn0jgx747shqr9286wqfzw02h43p4pk8fv2b766b9";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "GObject-introspection based dynamic Lua binding to GObject based libraries"; description = "GObject-introspection based dynamic Lua binding to GObject based libraries";
homepage = https://github.com/pavouk/lgi; homepage = https://github.com/pavouk/lgi;
license = "custom"; license = "custom";
maintainers = with maintainers; [ lovek323 ]; maintainers = with maintainers; [ lovek323 rasendubi ];
platforms = platforms.unix; platforms = platforms.unix;
}; };