about summary refs log tree commit diff
path: root/modules/programs
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-04-03 11:03:23 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-04-04 12:42:31 +0200
commit3e09d459e34e8a8859a4c6e63ebd0725fbe3f520 (patch)
tree08089348b7978a9054587b5c8edee49ed2bf0867 /modules/programs
parentae0666f09ea8c08d9406bed1b32b89df68ac54f2 (diff)
modules/gpg-agent: Remove unused debug/test code
I've used this to test compilation of the agent wrapper at an early
state of development and I've accidentally committed this along with
8db1803b5d9865b2355fabdb6bb974d879ce57cc.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules/programs')
-rw-r--r--modules/programs/gpg-agent/test.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/modules/programs/gpg-agent/test.nix b/modules/programs/gpg-agent/test.nix
deleted file mode 100644
index ecfa2737..00000000
--- a/modules/programs/gpg-agent/test.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-let
-  pkgs = import <nixpkgs> {};
-in
-
-  pkgs.runCommand "gpg-agent-wrapper" {
-    buildInputs = with pkgs; [ pkgconfig systemd ];
-  } ''
-    cc -Wall -shared -std=c11 \
-      $(pkg-config --cflags --libs libsystemd) \
-      "${./agent-wrapper.c}" -o "$out" -ldl -fPIC
-  ''