summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorcodyopel <codyopel@gmail.com>2015-05-07 08:38:43 -0400
committercodyopel <codyopel@gmail.com>2015-05-07 08:38:43 -0400
commit0c0e37a32b646e986921981a868c2319c7ec9855 (patch)
treecb3b24899e66b6b4481dba5b1b02d7df249070e2 /pkgs
parent8ea440b59bd27148680dc8cd847d59d29996ebeb (diff)
downloadnixlib-0c0e37a32b646e986921981a868c2319c7ec9855.tar
nixlib-0c0e37a32b646e986921981a868c2319c7ec9855.tar.gz
nixlib-0c0e37a32b646e986921981a868c2319c7ec9855.tar.bz2
nixlib-0c0e37a32b646e986921981a868c2319c7ec9855.tar.lz
nixlib-0c0e37a32b646e986921981a868c2319c7ec9855.tar.xz
nixlib-0c0e37a32b646e986921981a868c2319c7ec9855.tar.zst
nixlib-0c0e37a32b646e986921981a868c2319c7ec9855.zip
libsexy: add meta
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libsexy/default.nix17
1 files changed, 12 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libsexy/default.nix b/pkgs/development/libraries/libsexy/default.nix
index 81a38d399735..179c899d754d 100644
--- a/pkgs/development/libraries/libsexy/default.nix
+++ b/pkgs/development/libraries/libsexy/default.nix
@@ -1,17 +1,24 @@
-{ stdenv, fetchurl, pkgconfig, libxml2, glib, gtk, pango
+{ stdenv, fetchurl, pkgconfig
+, glib, gtk, libxml2, pango
 }:
  
 stdenv.mkDerivation {
   name = "libsexy-0.1.11";
-  #builder = ./builder.sh;
 
   src = fetchurl {
     url = http://releases.chipx86.com/libsexy/libsexy/libsexy-0.1.11.tar.gz;
     sha256 = "8c4101a8cda5fccbba85ba1a15f46f2cf75deaa8b3c525ce5b135b9e1a8fe49e";
   };
 
-  buildInputs = [ pkgconfig libxml2 glib gtk pango
-  ];
+  nativeBuildInputs = [ pkgconfig ];
 
-  #configureFlags="";  
+  buildInputs = [ glib gtk libxml2 pango ];
+
+  meta = with stdenv.lib; {
+    description = "A collection of GTK+ widgets";
+    homepahe = http://blog.chipx86.com/tag/libsexy/;
+    license = licenses.lgpl21;
+    maintainers = with maintainers; [ ];
+    platforms = platforms.unix;
+  };
 }