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.
20 lines
540 B
Nix
20 lines
540 B
Nix
{ stdenv, fetchurl, pkg-config, libestr }:
|
|
stdenv.mkDerivation {
|
|
name = "libee-0.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.libee.org/download/files/download/libee-0.4.1.tar.gz";
|
|
sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libestr];
|
|
|
|
meta = {
|
|
homepage = "http://www.libee.org/";
|
|
description = "An Event Expression Library inspired by CEE";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
};
|
|
}
|