2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gtk2 }:
|
2012-07-02 16:35:47 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-03 15:51:26 +01:00
|
|
|
name = "gtkdatabox-0.9.3.1";
|
2012-07-02 16:35:47 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/gtkdatabox/${name}.tar.gz";
|
2019-01-03 15:51:26 +01:00
|
|
|
sha256 = "1rdxnjgh6v3yjqgsfmamyzpfxckzchps4kqvvz88nifmd7ckhjfh";
|
2012-07-02 16:35:47 +02:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2012-07-02 16:35:47 +02:00
|
|
|
|
2016-09-11 23:24:51 +02:00
|
|
|
propagatedBuildInputs = [ gtk2 ];
|
2012-07-02 16:35:47 +02:00
|
|
|
|
|
|
|
meta = {
|
2019-09-04 00:49:40 +02:00
|
|
|
description = "GTK widget for displaying large amounts of numerical data";
|
2012-07-02 16:35:47 +02:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
license = lib.licenses.lgpl2;
|
2012-07-02 16:35:47 +02:00
|
|
|
|
2021-03-11 19:04:34 +01:00
|
|
|
platforms = lib.platforms.unix;
|
2012-07-02 16:35:47 +02:00
|
|
|
};
|
|
|
|
}
|