2016-09-11 22:24:51 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk2 }:
|
2012-07-02 15:35:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-15 09:37:47 +00:00
|
|
|
name = "gtkdatabox-0.9.2.0";
|
2012-07-02 15:35:47 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/gtkdatabox/${name}.tar.gz";
|
2014-11-15 09:37:47 +00:00
|
|
|
sha256 = "0h20685bzw5j5h6mw8c6apbrbrd9w518c6xdhr55147px11nhnkl";
|
2012-07-02 15:35:47 +01:00
|
|
|
};
|
|
|
|
|
2016-09-11 22:24:51 +01:00
|
|
|
buildInputs = [ pkgconfig ];
|
2012-07-02 15:35:47 +01:00
|
|
|
|
2016-09-11 22:24:51 +01:00
|
|
|
propagatedBuildInputs = [ gtk2 ];
|
2012-07-02 15:35:47 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Gtk+ widget for displaying large amounts of numerical data";
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2;
|
2012-07-02 15:35:47 +01:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|