summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkdatabox/default.nix
blob: 43d0db9755a318d43ae8c685e2daecc4561a29ab (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 = "LGPLv2";

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