Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl, fetchpatch, cyrus_sasl, libevent }: 2 3stdenv.mkDerivation rec { 4 pname = "libmemcached"; 5 version = "1.0.18"; 6 7 src = fetchurl { 8 url = "https://launchpad.net/libmemcached/${lib.versions.majorMinor version}/${version}/+download/libmemcached-${version}.tar.gz"; 9 sha256 = "10jzi14j32lpq0if0p9vygcl2c1352hwbywzvr9qzq7x6aq0nb72"; 10 }; 11 12 # Fix linking against libpthread (patch from Fedora) 13 # https://bugzilla.redhat.com/show_bug.cgi?id=1037707 14 # https://bugs.launchpad.net/libmemcached/+bug/1281907 15 # Fix building on macOS (patch from Homebrew) 16 # https://bugs.launchpad.net/libmemcached/+bug/1245562 17 patches = lib.optional stdenv.isLinux ./libmemcached-fix-linking-with-libpthread.patch 18 ++ lib.optional stdenv.isDarwin (fetchpatch { 19 url = "https://raw.githubusercontent.com/Homebrew/homebrew/bfd4a0a4626b61c2511fdf573bcbbc6bbe86340e/Library/Formula/libmemcached.rb"; 20 sha256 = "1gjf3vd7hiyzxjvlg2zfc3y2j0lyr6nhbws4xb5dmin3csyp8qb8"; 21 }) 22 ++ lib.optional stdenv.hostPlatform.isMusl ./musl-fixes.patch; 23 24 buildInputs = [ libevent ]; 25 propagatedBuildInputs = [ cyrus_sasl ]; 26 27 env.NIX_CFLAGS_COMPILE = "-fpermissive"; 28 29 meta = with lib; { 30 homepage = "https://libmemcached.org"; 31 description = "Open source C/C++ client library and tools for the memcached server"; 32 license = licenses.bsd3; 33 platforms = platforms.linux ++ platforms.darwin; 34 }; 35}