mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
72e7d569a7
GTK was renamed.
23 lines
511 B
Nix
23 lines
511 B
Nix
{ stdenv, fetchurl, pkgconfig, gtk2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gtkdatabox-0.9.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gtkdatabox/${name}.tar.gz";
|
|
sha256 = "1rdxnjgh6v3yjqgsfmamyzpfxckzchps4kqvvz88nifmd7ckhjfh";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|