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.
25 lines
740 B
Nix
25 lines
740 B
Nix
{ lib, stdenv, fetchurl, intltool, wrapGAppsHook, pkg-config , gtk, libxml2
|
|
, enchant, gucharmap, python, gnome3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bluefish-2.2.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/bluefish/${name}.tar.bz2";
|
|
sha256 = "0slyjx4b4l612505q02crk00pjg9d5wi8gm5gxvcs0f6l9dr1y8d";
|
|
};
|
|
|
|
nativeBuildInputs = [ intltool pkg-config wrapGAppsHook ];
|
|
buildInputs = [ gnome3.adwaita-icon-theme gtk libxml2
|
|
enchant gucharmap python ];
|
|
|
|
meta = with lib; {
|
|
description = "A powerful editor targeted towards programmers and webdevelopers";
|
|
homepage = "http://bluefish.openoffice.nl/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [maintainers.vbgl];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|