lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v192 22 lines 508 B view raw
1{ stdenv, fetchurl, pkgconfig, gtk }: 2 3stdenv.mkDerivation rec { 4 name = "gtkdatabox-0.9.2.0"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/gtkdatabox/${name}.tar.gz"; 8 sha256 = "0h20685bzw5j5h6mw8c6apbrbrd9w518c6xdhr55147px11nhnkl"; 9 }; 10 11 buildInputs = [ pkgconfig gtk ]; 12 13 propagatedBuildInputs = [ gtk ]; 14 15 meta = { 16 description = "Gtk+ widget for displaying large amounts of numerical data"; 17 18 license = stdenv.lib.licenses.lgpl2; 19 20 platforms = stdenv.lib.platforms.linux; 21 }; 22}