forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into da/devhsell
- Loading branch information
Showing
26 changed files
with
343 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2195,6 +2195,16 @@ | |
githubId = 4971975; | ||
name = "Janne Heß"; | ||
}; | ||
dasisdormax = { | ||
email = "[email protected]"; | ||
github = "dasisdormax"; | ||
githubId = 3714905; | ||
keys = [{ | ||
longkeyid = "rsa4096/0x02BA0D4480CA6C44"; | ||
fingerprint = "E59B A198 61B0 A9ED C1FA 3FB2 02BA 0D44 80CA 6C44"; | ||
}]; | ||
name = "Maximilian Wende"; | ||
}; | ||
dasj19 = { | ||
email = "[email protected]"; | ||
github = "dasj19"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ lib, stdenvNoCC, fetchFromGitHub, youtube-dl }: | ||
|
||
stdenvNoCC.mkDerivation rec { | ||
pname = "mpv-playlistmanager"; | ||
version = "unstable-2021-03-09"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "jonniek"; | ||
repo = "mpv-playlistmanager"; | ||
rev = "c15a0334cf6d4581882fa31ddb1e6e7f2d937a3e"; | ||
sha256 = "uxcvgcSGS61UU8MmuD6qMRqpIa53iasH/vkg1xY7MVc="; | ||
}; | ||
|
||
postPatch = '' | ||
substituteInPlace playlistmanager.lua \ | ||
--replace "'youtube-dl'" "'${youtube-dl}/bin/youtube-dl'" \ | ||
''; | ||
|
||
dontBuild = true; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
mkdir -p $out/share/mpv/scripts | ||
cp playlistmanager.lua $out/share/mpv/scripts | ||
runHook postInstall | ||
''; | ||
|
||
passthru.scriptName = "playlistmanager.lua"; | ||
|
||
meta = with lib; { | ||
description = "Mpv lua script to create and manage playlists"; | ||
homepage = "https://github.com/jonniek/mpv-playlistmanager"; | ||
license = licenses.unlicense; | ||
platforms = platforms.all; | ||
maintainers = with maintainers; [ lunik1 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.