summary refs log tree commit diff
path: root/pkgs/development/tools/misc/eggdbus/default.nix
diff options
context:
space:
mode:
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 3b1c70b4ac3..7c7e5340434 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;
   };
 }