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.
34 lines
882 B
Nix
34 lines
882 B
Nix
{ lib, stdenv, fetchgit, libmowgli, pkg-config, git, gettext, pcre, libidn, cracklib, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "atheme";
|
|
version = "7.2.10-r2";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/atheme/atheme.git";
|
|
rev = "v${version}";
|
|
sha256 = "1yasfvbmixj4zzfv449hlcp0ms5c250lrshdy6x6l643nbnix4y9";
|
|
leaveDotGit = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config git gettext ];
|
|
buildInputs = [ libmowgli pcre libidn cracklib openssl ];
|
|
|
|
configureFlags = [
|
|
"--with-pcre"
|
|
"--with-libidn"
|
|
"--with-cracklib"
|
|
"--enable-large-net"
|
|
"--enable-contrib"
|
|
"--enable-reproducible-builds"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A set of services for IRC networks";
|
|
homepage = "https://atheme.github.io/";
|
|
license = licenses.isc;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ leo60228 ];
|
|
};
|
|
}
|