cyberlocker-tools: init

This commit is contained in:
lassulus 2021-08-29 14:00:18 +02:00
parent 1c0af4687c
commit 3c35eca7e8

View File

@ -0,0 +1,19 @@
{ pkgs }:
pkgs.symlinkJoin {
name = "cyberlocker-tools";
paths = [
(pkgs.writers.writeDashBin "cput" ''
set -efu
path=$1
${pkgs.curl}/bin/curl -Ss --data-binary @- "http://c.r/$path"
echo "http://c.r/$path"
'')
(pkgs.writers.writeDashBin "cdel" ''
set -efu
path=$1
${pkgs.curl}/bin/curl -X DELETE "http://c.r/$path"
'')
];
}