Commit Graph

23 Commits

Author SHA1 Message Date
Sandro Jäckel
5bbf83eec1
yt-dlp: 2024.8.1 -> 2024.8.6
Changelog: https://github.com/yt-dlp/yt-dlp/releases/tag/2024.8.6
2024-08-06 11:18:34 +02:00
adisbladis
e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
Sandro Jäckel
4da61526d9
yt-dlp: 2024.7.25 -> 2024.8.1
Changelog: https://github.com/yt-dlp/yt-dlp/releases/tag/2024.8.1
2024-08-01 19:51:22 +02:00
éclairevoyant
9f13d0bce2
yt-dlp: add curl impersonation support 2024-07-26 09:32:23 -04:00
éclairevoyant
0f0687f6b3
yt-dlp: move to by-name 2024-07-26 09:32:23 -04:00
Sigmanificient
512e8afdb9 treewide: remove unused occurence of stdenv (and other) arguments
format (will squash)
2024-07-14 04:32:56 +02:00
Ingo Reitz
6e3d2497a2
ytmdesktop: fix desktop file, removed unused stuff 2024-07-11 13:00:47 +02:00
Sandro
1947f978df
Merge pull request #317309 from cjshearer/ytmdesktop_init_at_2.0.5 2024-07-10 16:23:33 +02:00
h7x4
e51e07e4be
yt-dlg: install desktop item 2024-06-12 23:22:04 +02:00
cjshearer
7d429676ef ytmdesktop: init at 2.0.5 2024-06-11 08:25:30 -04:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Alexis Hildebrandt
bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00
John Garcia
bfe23d4fad ytdownloader: refactor code with copyDesktopItems & nixfmt 2024-06-03 09:20:11 +01:00
John Garcia
ed75226cdf ytdownloader: disable updates 2024-06-03 09:18:01 +01:00
John Garcia
c9cc328009 ytdownloader: 3.17.4 -> 3.18.0 2024-06-02 22:40:46 +01:00
Aleksana
56e2cd78e1
Merge pull request #306630 from codebam/ytermusic
ytermusic: init at 0.1.0
2024-05-08 19:59:31 +08:00
Sean Behan
64cfcd5f22
ytermusic: init at 0.1.0 2024-05-07 22:59:30 -04:00
John Garcia
8a3f9b1aa8 ytdownloader: 3.17.3 -> 3.17.4 2024-04-21 11:47:06 +01:00
Quantenzitrone
17b4bbf63d
yt-dlg: init at 1.8.5 2024-03-17 08:11:10 +01:00
John Garcia
f48a35b070 ytdownloader: add patch to set correct config dir 2024-03-09 15:06:15 +00:00
John Garcia
aa45bdd5d6 ytdownloader: init at 3.17.3 2024-03-08 14:09:06 +00:00
Anderson Torres
e6ab988be0 ytree: migrate to by-name 2023-12-01 12:44:16 -03:00
kashw2
66733f9113 ytui-music: init at 2.0.0-rc1 2023-09-23 00:54:46 +10:00