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.
27 lines
682 B
Nix
27 lines
682 B
Nix
{ lib, stdenv, fetchurl
|
|
, libX11, libXext, libXaw
|
|
, pkg-config, imlib2, libast }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "eterm";
|
|
version = "0.9.6";
|
|
srcName = "Eterm-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.eterm.org/download/${srcName}.tar.gz";
|
|
sha256 = "0g71szjklkiczxwzbjjfm59y6v9w4hp8mg7cy99z1g7qcjm0gfbj";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libX11 libXext libXaw imlib2 ];
|
|
propagatedBuildInputs = [ libast ];
|
|
|
|
meta = with lib; {
|
|
description = "Terminal emulator";
|
|
homepage = "http://www.eterm.org";
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|