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
707 B
Nix
26 lines
707 B
Nix
{ lib, stdenv, meson, ninja, pkg-config, fetchFromGitHub, glib, vala, ctpl
|
|
, libgee, libsoup, fcgi }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "valum";
|
|
version = "0.3.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "valum-framework";
|
|
repo = "valum";
|
|
rev = "v${version}";
|
|
sha256 = "15lnk91gykm60rv31x3r1swp2bhzl3gwp12mf39smzi4bmf7h38f";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
buildInputs = [ glib vala ctpl libgee libsoup fcgi ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/valum-framework/valum";
|
|
description = "Web micro-framework written in Vala";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.lethalman ];
|
|
};
|
|
}
|