aboutsummaryrefslogtreecommitdiff
path: root/pkgs/hydralauncher/client.nix
diff options
context:
space:
mode:
authorspl3g <spleefer6@yandex.ru>2024-07-02 03:42:50 +0300
committerspl3g <spleefer6@yandex.ru>2025-05-01 14:58:56 +0300
commit5f836888f88cebe5518c3d780569db981e999d4c (patch)
tree5c2ab1a4a680dec508d22baca692615019d90336 /pkgs/hydralauncher/client.nix
parent0f450637eeabd1157ec3cbb5b328bd912b890a41 (diff)
package hydralauncher deb (does not work)
Diffstat (limited to 'pkgs/hydralauncher/client.nix')
-rw-r--r--pkgs/hydralauncher/client.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/hydralauncher/client.nix b/pkgs/hydralauncher/client.nix
deleted file mode 100644
index 35e114d..0000000
--- a/pkgs/hydralauncher/client.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ fetchFromGitHub
-, python39
-, ensureNewerSourcesHook
-}:
-
-python39.pkgs.buildPythonApplication rec {
- name = "hydralauncher-bittorrent-client";
- version = "2.0.2";
-
- src = fetchFromGitHub {
- repo = "hydra";
- owner = "hydralauncher";
- rev = "v${version}";
- sha256 = "1g1a03cay4vw32jl6jm94gfaf099q3ln1kcjy52g6z4r4qmjkgch";
- };
-
- format = "other";
-
- buildInputs = [
- (ensureNewerSourcesHook { year = "1980"; })
- ];
-
- propagatedBuildInputs = with python39.pkgs; [
- cx-freeze
- libtorrent-rasterbar
- ];
-
- buildPhase = ''
- python torrent-client/setup.py build
- '';
-}