gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-exchange] branch master updated: nix file does not b


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] branch master updated: nix file does not belong in root dir
Date: Thu, 27 Jun 2019 00:49:11 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 48325942 nix file does not belong in root dir
48325942 is described below

commit 4832594274e82bd8c1c9372ac56ffd05ff3a2af6
Author: Florian Dold <address@hidden>
AuthorDate: Thu Jun 27 00:49:07 2019 +0200

    nix file does not belong in root dir
---
 taler-exchange-dev.nix | 61 --------------------------------------------------
 1 file changed, 61 deletions(-)

diff --git a/taler-exchange-dev.nix b/taler-exchange-dev.nix
deleted file mode 100644
index 2e5e068e..00000000
--- a/taler-exchange-dev.nix
+++ /dev/null
@@ -1,61 +0,0 @@
-{ 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; [ ];
-  };
-}

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]