about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorLuca Bruno <lucabru@src.gnome.org>2014-12-17 15:03:25 +0100
committerLuca Bruno <lucabru@src.gnome.org>2014-12-17 15:08:21 +0100
commit614162ee6c4ea7dfa14c6fb0c35b0ce3058bda53 (patch)
tree268120e524876c372cc38b5b81498331ec9c5801 /pkgs/development/libraries
parent374a9cc16271d234a85fc90c11b6cc106237b68a (diff)
downloadnixlib-614162ee6c4ea7dfa14c6fb0c35b0ce3058bda53.tar
nixlib-614162ee6c4ea7dfa14c6fb0c35b0ce3058bda53.tar.gz
nixlib-614162ee6c4ea7dfa14c6fb0c35b0ce3058bda53.tar.bz2
nixlib-614162ee6c4ea7dfa14c6fb0c35b0ce3058bda53.tar.lz
nixlib-614162ee6c4ea7dfa14c6fb0c35b0ce3058bda53.tar.xz
nixlib-614162ee6c4ea7dfa14c6fb0c35b0ce3058bda53.tar.zst
nixlib-614162ee6c4ea7dfa14c6fb0c35b0ce3058bda53.zip
Some lua and awesome improvements
- Move lgi to luaPackages
- Use luaPackages in awesome and passthru lua
- Allow to pass lua modules to the awesome WM so that those can be used in the configuration
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/lgi/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/libraries/lgi/default.nix b/pkgs/development/libraries/lgi/default.nix
deleted file mode 100644
index 663185831f63..000000000000
--- a/pkgs/development/libraries/lgi/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, gobjectIntrospection, lua, glib }:
-
-stdenv.mkDerivation {
-  name = "lgi-0.7.2";
-
-  src = fetchurl {
-    url    = https://github.com/pavouk/lgi/archive/0.7.2.tar.gz;
-    sha256 = "0ihl7gg77b042vsfh0k7l53b7sl3d7mmrq8ns5lrsf71dzrr19bn";
-  };
-
-  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 ];
-    platforms   = platforms.unix;
-  };
-
-  buildInputs = [ glib gobjectIntrospection lua pkgconfig ];
-
-  preBuild = ''
-    sed -i "s|/usr/local|$out|" lgi/Makefile
-  '';
-}