From 1a64deeb894dc95e2645a75771732c6cc53a79ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 4 Oct 2023 01:35:06 +0200 Subject: Squash changes containing private information There were a lot of changes since the previous commit, but a lot of them contained personnal information about users. All thos changes got stashed into a single commit (history is kept in a different place) and private information was moved in a separate private repository --- flakes/mypackages/pkgs/gearmand/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 flakes/mypackages/pkgs/gearmand/default.nix (limited to 'flakes/mypackages/pkgs/gearmand/default.nix') diff --git a/flakes/mypackages/pkgs/gearmand/default.nix b/flakes/mypackages/pkgs/gearmand/default.nix new file mode 100644 index 0000000..14ef8c2 --- /dev/null +++ b/flakes/mypackages/pkgs/gearmand/default.nix @@ -0,0 +1,16 @@ +{ stdenv, fetchurl, boost, gperf, libevent, libmysqlclient, libuuid, sqlite, hiredis, postgresql, openssl }: +stdenv.mkDerivation rec { + pname = "gearmand"; + version = "1.1.20"; + src = fetchurl { + url = "https://github.com/gearman/${pname}/releases/download/${version}/${pname}-${version}.tar.gz"; + sha256 = "sha256-L2D6IH3NcwWV75ap3DyomVZnB8gXYQazxj7PR+3BR6Y="; + }; + buildInputs = [ boost gperf libevent openssl libmysqlclient libuuid sqlite hiredis postgresql ]; + configureFlags = [ + "--with-boost=${boost.dev}" + "--with-boost-libdir=${boost}/lib" + "--with-openssl=${openssl.dev}" + "--enable-ssl" + ]; +} -- cgit v1.2.3