forked from mirrors/nixpkgs
coursera-dl: fix api version problems
The api was changed in November 2022, so the program no longer works - https://github.com/coursera-dl/coursera-dl/issues/834 Doesn't look like it's maintained either, but at least there is a patch that restores the functionality.
This commit is contained in:
parent
33d98d1407
commit
fd3d2c33da
|
@ -38,9 +38,13 @@ in pythonPackages.buildPythonApplication rec {
|
|||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://github.com/coursera-dl/coursera-dl/pull/789.patch";
|
||||
url = "https://github.com/coursera-dl/coursera-dl/commit/c8796e567698be166cb15f54e095140c1a9b567e.patch";
|
||||
sha256 = "sha256:07ca6zdyw3ypv7yzfv2kzmjvv86h0rwzllcg0zky27qppqz917bv";
|
||||
})
|
||||
(fetchpatch {
|
||||
url = "https://github.com/coursera-dl/coursera-dl/commit/6c221706ba828285ca7a30a08708e63e3891b36f.patch";
|
||||
sha256 = "sha256-/AKFvBPInSq/lsz+G0jVSl/ukVgCnt66oePAb+66AjI=";
|
||||
})
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue