e979e9cc65
Semi-automatic update. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 0.9.3.0 with grep in /nix/store/3axd91hc3vi45w0j8yw0qfgwip4cx9da-gtkdatabox-0.9.3.0 - found 0.9.3.0 in filename of file in /nix/store/3axd91hc3vi45w0j8yw0qfgwip4cx9da-gtkdatabox-0.9.3.0
23 lines
512 B
Nix
23 lines
512 B
Nix
{ stdenv, fetchurl, pkgconfig, gtk2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gtkdatabox-0.9.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gtkdatabox/${name}.tar.gz";
|
|
sha256 = "1wigd4bdlrz4pma2l2wd3z8sx7pqmsvq845nya5vma9ibi96nhhz";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
propagatedBuildInputs = [ gtk2 ];
|
|
|
|
meta = {
|
|
description = "Gtk+ widget for displaying large amounts of numerical data";
|
|
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|