3
0
Fork 0
forked from mirrors/nixpkgs

luaPackages.lgi: 0.7.2 -> 0.9.1

This commit is contained in:
Alexey Shmalko 2017-01-02 14:02:19 +02:00
parent b33907075f
commit 9e3b2cbd21
No known key found for this signature in database
GPG key ID: DCEF7BCCEB3066C3

View file

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