about summary refs log tree commit diff
path: root/tools/sendsms/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-11-21 17:51:27 -0800
committerFranck Cuny <franck@fcuny.net>2022-11-21 17:51:27 -0800
commit3f3636dde60037110340cfdf466dd82a173555fe (patch)
tree2a993b146a8f9253a9ff8462f0a2660adfccf8f0 /tools/sendsms/default.nix
parentref(fonts): switch back to source code pro (diff)
downloadworld-3f3636dde60037110340cfdf466dd82a173555fe.tar.gz
ref(tools/sendsms): it's been moved to its own repository
https://git.fcuny.net/fcuny/sendsms
Diffstat (limited to 'tools/sendsms/default.nix')
-rw-r--r--tools/sendsms/default.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/tools/sendsms/default.nix b/tools/sendsms/default.nix
deleted file mode 100644
index 17c6b5a..0000000
--- a/tools/sendsms/default.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ pkgs, naersk, ... }:
-
-naersk.buildPackage {
-  src = builtins.filterSource
-    (path: type:
-      type != "directory" || builtins.baseNameOf path != "target")
-    ./.;
-
-  nativeBuildInputs = with pkgs; [ pkg-config ];
-  buildInputs = with pkgs; [ openssl ];
-
-  remapPathPrefix = true;
-  doCheck = true;
-}