emacsPackages.youtube-dl: use melpaBuild

- get rid of nested with
- remove samuelrivas
This commit is contained in:
Anderson Torres 2024-07-07 01:41:36 -03:00
parent ebf9b608d7
commit 411b025148

View File

@ -1,10 +1,10 @@
{ lib
, fetchFromGitHub
, trivialBuild
, emacs
{
lib,
fetchFromGitHub,
melpaBuild,
}:
trivialBuild {
melpaBuild {
pname = "youtube-dl";
version = "1.0-unstable-2018-10-12";
@ -12,14 +12,13 @@ trivialBuild {
owner = "skeeto";
repo = "youtube-dl-emacs";
rev = "af877b5bc4f01c04fccfa7d47a2c328926f20ef4";
sha256 = "sha256-Etl95rcoRACDPjcTPQqYK2L+w8OZbOrTrRT0JadMdH4=";
hash = "sha256-Etl95rcoRACDPjcTPQqYK2L+w8OZbOrTrRT0JadMdH4=";
};
meta = with lib; {
meta = {
description = "Emacs youtube-dl download manager";
homepage = "https://github.com/skeeto/youtube-dl-emacs";
license = licenses.unlicense;
maintainers = with maintainers; [ leungbk ];
inherit (emacs.meta) platforms;
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ leungbk ];
};
}