2021-09-14 18:55:12 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2021-09-17 14:35:44 +01:00
|
|
|
, trivialBuild
|
2021-09-14 18:55:12 +01:00
|
|
|
, emacs
|
|
|
|
}:
|
2020-05-18 19:57:08 +01:00
|
|
|
|
2021-09-14 18:55:12 +01:00
|
|
|
trivialBuild {
|
2020-05-18 19:57:08 +01:00
|
|
|
pname = "youtube-dl";
|
2021-10-06 02:45:24 +01:00
|
|
|
version = "0.pre+unstable=2018-10-12";
|
2020-05-18 19:57:08 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "skeeto";
|
|
|
|
repo = "youtube-dl-emacs";
|
|
|
|
rev = "af877b5bc4f01c04fccfa7d47a2c328926f20ef4";
|
|
|
|
sha256 = "sha256-Etl95rcoRACDPjcTPQqYK2L+w8OZbOrTrRT0JadMdH4=";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ emacs ];
|
|
|
|
|
2021-09-14 18:55:12 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Emacs youtube-dl download manager";
|
2020-05-18 19:57:08 +01:00
|
|
|
homepage = "https://github.com/skeeto/youtube-dl-emacs";
|
2021-09-14 18:55:12 +01:00
|
|
|
license = licenses.unlicense;
|
|
|
|
maintainers = with maintainers; [ leungbk ];
|
|
|
|
inherit (emacs.meta) platforms;
|
2020-05-18 19:57:08 +01:00
|
|
|
};
|
|
|
|
}
|