From 0c0e37a32b646e986921981a868c2319c7ec9855 Mon Sep 17 00:00:00 2001 From: codyopel Date: Thu, 7 May 2015 08:38:43 -0400 Subject: [PATCH] libsexy: add meta --- pkgs/development/libraries/libsexy/default.nix | 17 ++++++++++++----- 1 file 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; + }; }