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
772 B
Nix
25 lines
772 B
Nix
{ stdenv, lib, fetchurl, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnuclad";
|
|
version = "0.2.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/gnuclad/trunk/${lib.versions.majorMinor version}/+download/${pname}-${version}.tar.gz";
|
|
sha256 = "0ka2kscpjff7gflsargv3r9fdaxhkf3nym9mfaln3pnq6q7fwdki";
|
|
};
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=catch-value";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://launchpad.net/gnuclad";
|
|
description = "gnuclad tries to help the environment by creating trees. Its primary use will be generating cladogram trees for the GNU/Linux distro timeline project";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ mog ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|