summary refs log tree commit diff
path: root/pkgs/development/libraries/libsexy/default.nix
blob: 179c899d754d9bde5fa4429f43c771ec30fac425 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, pkgconfig
, glib, gtk, libxml2, pango
}:
 
stdenv.mkDerivation {
  name = "libsexy-0.1.11";

  src = fetchurl {
    url = http://releases.chipx86.com/libsexy/libsexy/libsexy-0.1.11.tar.gz;
    sha256 = "8c4101a8cda5fccbba85ba1a15f46f2cf75deaa8b3c525ce5b135b9e1a8fe49e";
  };

  nativeBuildInputs = [ pkgconfig ];

  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;
  };
}