mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
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.
29 lines
898 B
Nix
29 lines
898 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config
|
|
, boost, openssl, log4cpp, libopus, protobuf }:
|
|
with lib; stdenv.mkDerivation {
|
|
pname = "mumlib";
|
|
version = "unstable-2018-12-12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "slomkowski";
|
|
repo = "mumlib";
|
|
rev = "f91720de264c0ab5e02bb30deafc5c4b2c245eac";
|
|
sha256 = "0p29z8379dp2ra0420x8xjp4d3r2mf680lj38xmlc8npdzqjqjdp";
|
|
};
|
|
|
|
buildInputs = [ boost openssl libopus protobuf log4cpp ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
installPhase = ''
|
|
install -Dm555 libmumlib.so $out/lib/libmumlib.so
|
|
cp -a ../include $out
|
|
'';
|
|
|
|
meta = {
|
|
description = "Fairy simple Mumble library written in C++, using boost::asio asynchronous networking framework";
|
|
homepage = "https://github.com/slomkowski/mumlib";
|
|
maintainers = with maintainers; [ das_j ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|