From bc4f3e09b59880e542dc3131de362d6f7afc09f3 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 27 Jun 2019 00:49:48 +0200 Subject: [PATCH] move nix files to separate dir --- default.nix => contrib/nix/default.nix | 0 contrib/nix/taler-exchange-dev.nix | 61 ++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) rename default.nix => contrib/nix/default.nix (100%) create mode 100644 contrib/nix/taler-exchange-dev.nix diff --git a/default.nix b/contrib/nix/default.nix similarity index 100% rename from default.nix rename to contrib/nix/default.nix diff --git a/contrib/nix/taler-exchange-dev.nix b/contrib/nix/taler-exchange-dev.nix new file mode 100644 index 000000000..2e5e068e5 --- /dev/null +++ b/contrib/nix/taler-exchange-dev.nix @@ -0,0 +1,61 @@ +{ stdenv, makeWrapper, pkgconfig, autoconf, automake, libtool, ccache, ccache_dir ? "" +, gnunet-dev, postgresql, jansson, libgcrypt, libgnurl, libmicrohttpd }: + +stdenv.mkDerivation rec { + src = ./.; + name = "taler-exchange-dev"; + + buildInputs = [ + makeWrapper pkgconfig autoconf automake libtool ccache + gnunet-dev postgresql jansson libgcrypt libgnurl libmicrohttpd + ]; + + patchPhase = '' + if [ -e Makefile ]; then + make distclean + fi + ''; + + NIX_CFLAGS_COMPILE = "-ggdb -O0"; + + configureFlags = [ + "--enable-gcc-hardening" + "--enable-linker-hardening" + + "--enable-logging=verbose" + "--enable-poisoning" + ]; + + preConfigure = '' + ./bootstrap + + if [ -n "${ccache_dir}" ]; then + export CC='ccache gcc' + export CCACHE_COMPRESS=1 + export CCACHE_DIR="${ccache_dir}" + export CCACHE_UMASK=007 + fi + ''; + + doCheck = false; + + postInstall = '' + # Tests can be run this way + #export GNUNET_PREFIX="$out" + #export PATH="$out/bin:$PATH" + #make -k check + ''; + + meta = with stdenv.lib; { + description = "Exchange for GNU Taler"; + + longDescription = '' + ''; + + homepage = https://taler.net/; + + license = licenses.gpl3Plus; + platforms = platforms.gnu; + maintainers = with maintainers; [ ]; + }; +}