summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkdatabox/default.nix
blob: d074f51d3ca0e7b93f74b5c42872d835948a7552 (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, gtk2 }:

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

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

  nativeBuildInputs = [ pkgconfig ];

  propagatedBuildInputs = [ gtk2 ];

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

    license = stdenv.lib.licenses.lgpl2;

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