about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkdatabox/default.nix
blob: 6e5a1329c9b2ea3a87f7b797e1da97b95310834a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig, gtk }:

stdenv.mkDerivation rec {
  name = "gtkdatabox-0.9.2.0";

  src = fetchurl {
    url = "mirror://sourceforge/gtkdatabox/${name}.tar.gz";
    sha256 = "0h20685bzw5j5h6mw8c6apbrbrd9w518c6xdhr55147px11nhnkl";
  };

  buildInputs = [ pkgconfig gtk ];

  propagatedBuildInputs = [ gtk ];

  meta = {
    description = "Gtk+ widget for displaying large amounts of numerical data";

    license = stdenv.lib.licenses.lgpl2;

    platforms = stdenv.lib.platforms.linux;
  };
}