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.
26 lines
630 B
Nix
26 lines
630 B
Nix
{stdenv, fetchFromGitHub, autoreconfHook, pandoc, pkg-config}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jo";
|
|
version = "1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpmens";
|
|
repo = "jo";
|
|
rev = version;
|
|
sha256 ="1jnv3g38vaa66m83hqibyki31ii81xfpvjw6wgdv18ci3iwvsz3v";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook pandoc pkg-config ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A small utility to create JSON objects";
|
|
homepage = "https://github.com/jpmens/jo";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [maintainers.markus1189];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|