summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/baidudl/default.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
committermakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
commit060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch)
tree2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/5pkgs/baidudl/default.nix
parentcbfcc890e3b76d942b927809bf981a5fa7289e6a (diff)
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/5pkgs/baidudl/default.nix')
-rw-r--r--makefu/5pkgs/baidudl/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/makefu/5pkgs/baidudl/default.nix b/makefu/5pkgs/baidudl/default.nix
deleted file mode 100644
index 3c701fd6..00000000
--- a/makefu/5pkgs/baidudl/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, lib, pkgs, curl, jansson ,fetchFromGitHub, autoreconfHook }:
-stdenv.mkDerivation rec {
- pname = "baidudl";
- version = "2018-01-16";
- name = "${pname}-${version}";
-
- src = fetchFromGitHub {
- owner = "yzfedora";
- repo = "baidudl";
- rev = "712f2554a5ef7b2eba5c248d6406a6c535ef47b2";
- sha256 = "1nfzalyd9k87q6njdxpg7pa62q6hyfr2vwxwvahaflyp31nlpa0y";
- };
-
-
- nativeBuildInputs = [ autoreconfHook ];
- buildInputs = [ curl.dev jansson ];
-
- meta = {
- homepage = https://github.com/yzfedora/baidudl;
- description = "This is a multi-thread download tool for pan.baidu.com";
- license = lib.licenses.gpl3;
- };
-}