diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2023-10-04 01:35:06 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2023-10-04 02:11:48 +0200 |
commit | 1a64deeb894dc95e2645a75771732c6cc53a79ad (patch) | |
tree | 1b9df4838f894577a09b9b260151756272efeb53 /pkgs/telegramircd | |
parent | fa25ffd4583cc362075cd5e1b4130f33306103f0 (diff) | |
download | Nix-1a64deeb894dc95e2645a75771732c6cc53a79ad.tar.gz Nix-1a64deeb894dc95e2645a75771732c6cc53a79ad.tar.zst Nix-1a64deeb894dc95e2645a75771732c6cc53a79ad.zip |
Squash changes containing private information
There were a lot of changes since the previous commit, but a lot of them
contained personnal information about users. All thos changes got
stashed into a single commit (history is kept in a different place) and
private information was moved in a separate private repository
Diffstat (limited to 'pkgs/telegramircd')
-rw-r--r-- | pkgs/telegramircd/default.nix | 16 | ||||
-rw-r--r-- | pkgs/telegramircd/telegramircd.json | 15 |
2 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/telegramircd/default.nix b/pkgs/telegramircd/default.nix deleted file mode 100644 index 2f1d7ca..0000000 --- a/pkgs/telegramircd/default.nix +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | { openssl, telethon, python3Packages, mylibs }: | ||
2 | with python3Packages; | ||
3 | buildPythonApplication rec { | ||
4 | format = "other"; | ||
5 | pname = "telegramircd"; | ||
6 | version = "master"; | ||
7 | propagatedBuildInputs = [ telethon aiohttp ConfigArgParse openssl ]; | ||
8 | src = (mylibs.fetchedGithub ./telegramircd.json).src; | ||
9 | LD_LIBRARY_PATH = "${openssl.out}/lib"; | ||
10 | installPhase = '' | ||
11 | install -D $src/telegramircd.py $out/bin/telegramircd | ||
12 | wrapProgram "$out/bin/telegramircd" \ | ||
13 | --prefix LD_LIBRARY_PATH : "${openssl.out}/lib" | ||
14 | install -Dm644 "$src/config" -t "$out/etc/telegramircd/" | ||
15 | ''; | ||
16 | } | ||
diff --git a/pkgs/telegramircd/telegramircd.json b/pkgs/telegramircd/telegramircd.json deleted file mode 100644 index 3d219f8..0000000 --- a/pkgs/telegramircd/telegramircd.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "40a0c7c-master", | ||
3 | "meta": { | ||
4 | "name": "telegramircd", | ||
5 | "url": "https://github.com/MaskRay/telegramircd", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "MaskRay", | ||
10 | "repo": "telegramircd", | ||
11 | "rev": "40a0c7cf60492bde3f44d43f06f62e3792480139", | ||
12 | "sha256": "123fjhgxq2fzn0ar8274jv7jjbxnlpidrj5333kbch7rpcipks0y", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||