mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
luaPackages.lgi: 0.7.2 -> 0.9.1
This commit is contained in:
parent
b33907075f
commit
9e3b2cbd21
1 changed files with 7 additions and 5 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue