about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/eggdbus/default.nix
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-11-08 20:31:31 +0100
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-11-08 20:31:31 +0100
commit247e3b30825957572cbee9446b5a766edd15739b (patch)
treec1ebf0ffe4c1bfea102d1d150d0e0e26a678cb5a /pkgs/development/tools/misc/eggdbus/default.nix
parente9da929e410db4cc5474fc4048b43d16cbc9f103 (diff)
eggdbus: add license
Diffstat (limited to 'pkgs/development/tools/misc/eggdbus/default.nix')
-rw-r--r--pkgs/development/tools/misc/eggdbus/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/eggdbus/default.nix b/pkgs/development/tools/misc/eggdbus/default.nix
index 3b1c70b4ac332..7c7e534043430 100644
--- a/pkgs/development/tools/misc/eggdbus/default.nix
+++ b/pkgs/development/tools/misc/eggdbus/default.nix
@@ -2,18 +2,19 @@
 
 stdenv.mkDerivation rec {
   name = "eggdbus-0.6";
-  
+
   src = fetchurl {
     url = "https://hal.freedesktop.org/releases/${name}.tar.gz";
     sha256 = "118hj63ac65zlg71kydv4607qcg1qpdlql4kvhnwnnhar421jnq4";
   };
-  
+
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ glib dbus dbus-glib ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://hal.freedesktop.org/releases/;
     description = "D-Bus bindings for GObject";
-    platforms = stdenv.lib.platforms.linux;
+    platforms = platforms.linux;
+    license = licenses.lgpl2;
   };
 }