]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - pkgs/telegramircd/default.nix
Squash changes containing private information
[perso/Immae/Config/Nix.git] / pkgs / telegramircd / default.nix
diff --git a/pkgs/telegramircd/default.nix b/pkgs/telegramircd/default.nix
deleted file mode 100644 (file)
index 2f1d7ca..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-{ openssl, telethon, python3Packages, mylibs }:
-with python3Packages;
-buildPythonApplication rec {
-  format = "other";
-  pname = "telegramircd";
-  version = "master";
-  propagatedBuildInputs = [ telethon aiohttp ConfigArgParse openssl ];
-  src = (mylibs.fetchedGithub ./telegramircd.json).src;
-  LD_LIBRARY_PATH = "${openssl.out}/lib";
-  installPhase = ''
-    install -D $src/telegramircd.py $out/bin/telegramircd
-    wrapProgram "$out/bin/telegramircd" \
-      --prefix LD_LIBRARY_PATH : "${openssl.out}/lib"
-    install -Dm644 "$src/config" -t "$out/etc/telegramircd/"
-    '';
-}