about summary refs log tree commit diff
path: root/modules/programs
diff options
context:
space:
mode:
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
-  ''