1{ stdenv, fetchurl, pkgconfig
2, glib, gtk2, libxml2, pango
3}:
4
5stdenv.mkDerivation {
6 name = "libsexy-0.1.11";
7
8 src = fetchurl {
9 url = http://releases.chipx86.com/libsexy/libsexy/libsexy-0.1.11.tar.gz;
10 sha256 = "8c4101a8cda5fccbba85ba1a15f46f2cf75deaa8b3c525ce5b135b9e1a8fe49e";
11 };
12
13 nativeBuildInputs = [ pkgconfig ];
14
15 buildInputs = [ glib gtk2 libxml2 pango ];
16
17 meta = with stdenv.lib; {
18 description = "A collection of GTK+ widgets";
19 homepage = https://blog.chipx86.com/tag/libsexy/;
20 license = licenses.lgpl21;
21 maintainers = with maintainers; [ ];
22 platforms = platforms.unix;
23 };
24}