Skip to content

Instantly share code, notes, and snippets.

/youtube-dl.nix Secret

Created September 5, 2017 17:01
Show Gist options
  • Save anonymous/77eea4d11b25a27e93994acaf7004f2e to your computer and use it in GitHub Desktop.
Save anonymous/77eea4d11b25a27e93994acaf7004f2e to your computer and use it in GitHub Desktop.
self: super:
{
youtube-dl = super.youtube-dl.overrideAttrs (oldAttrs: {
name = "youtube-dl-2017.09.02";
version = "2017.09.02";
src = self.fetchurl {
url = "https://yt-dl.org/downloads/2017.09.02/youtube-dl-2017.09.02.tar.gz";
sha256 = "1sfra8rfb7hkbgmw2n2s42fpkh0y7j9lyars7qda3rj34ai7r6k9";
};
});
}
$ nix-shell -p youtube-dl --run 'youtube-dl --version'
2017.09.02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment