nixpkgs/pkgs/development/libraries/libks/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.0 KiB
Nix
Raw Normal View History

2021-10-31 10:28:21 +00:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, pkg-config
, libuuid
, openssl
2023-02-04 10:34:14 +00:00
, libossp_uuid
2021-10-31 10:28:21 +00:00
}:
stdenv.mkDerivation rec {
pname = "libks";
version = "1.8.2";
2021-10-31 10:28:21 +00:00
src = fetchFromGitHub {
owner = "signalwire";
repo = pname;
rev = "v${version}";
sha256 = "sha256-TJ3q97K3m3zYGB1D5lLVyrh61L3vtnP5I64lP/DYzW4=";
2021-10-31 10:28:21 +00:00
};
patches = [
(fetchpatch {
url = "https://raw.githubusercontent.com/openwrt/telephony/5ced7ea4fc9bd746273d564bf3c102f253d2182e/libs/libks/patches/01-find-libm.patch";
sha256 = "1hyrsdxg69d08qzvf3mbrx2363lw52jcybw8i3ynzqcl228gcg8a";
})
];
dontUseCmakeBuildDir = true;
nativeBuildInputs = [
cmake
pkg-config
];
2023-02-04 10:34:14 +00:00
buildInputs = [ openssl ]
++ lib.optional stdenv.isLinux libuuid
++ lib.optional stdenv.isDarwin libossp_uuid;
2021-10-31 10:28:21 +00:00
meta = with lib; {
description = "Foundational support for signalwire C products";
homepage = "https://github.com/signalwire/libks";
maintainers = with lib.maintainers; [ misuzu ];
2023-02-04 10:34:14 +00:00
platforms = platforms.unix;
2021-10-31 10:28:21 +00:00
license = licenses.mit;
};
}