23 lines
508 B
Nix
23 lines
508 B
Nix
{ 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;
|
|
};
|
|
}
|