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

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

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

  patches = [ ./deprecated_GTK.patch ];

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