9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
23 lines
513 B
Nix
23 lines
513 B
Nix
{ stdenv, fetchurl, pkg-config, gtk2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gtkdatabox-0.9.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gtkdatabox/${name}.tar.gz";
|
|
sha256 = "1rdxnjgh6v3yjqgsfmamyzpfxckzchps4kqvvz88nifmd7ckhjfh";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
propagatedBuildInputs = [ gtk2 ];
|
|
|
|
meta = {
|
|
description = "GTK widget for displaying large amounts of numerical data";
|
|
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|