Commit Graph

35 Commits

Author SHA1 Message Date
R. Ryantm
a40428dcd7 ytdl-sub: 2024.10.26 -> 2024.10.27.post5 2024-10-28 02:38:43 +00:00
cjshearer
fbd58d880e ytmdesktop: 2.0.5 -> 2.0.6 2024-10-27 10:13:54 -04:00
LoC
438a62e1be
ytdl-sub: init at 2024.10.26 2024-10-27 11:27:57 +01:00
DontEatOreo
a76ccc4820
yt-dlp: 2024.10.7 -> 2024.10.22
Changelog: https://github.com/yt-dlp/yt-dlp/releases/tag/2024.10.22
Diff: https://github.com/yt-dlp/yt-dlp/compare/2024.10.07...2024.10.22
2024-10-22 12:56:49 +03:00
R. Ryantm
0c5277bc9f ytdownloader: 3.18.2 -> 3.18.3 2024-10-11 08:51:36 +00:00
DontEatOreo
0dc2fe70d0
yt-dlp: 2024.9.27 -> 2024.10.7
Changelog: https://github.com/yt-dlp/yt-dlp/releases/tag/2024.10.07
Diff: https://github.com/yt-dlp/yt-dlp/compare/2024.09.27...2024.10.07
2024-10-08 11:10:09 +03:00
ocfox
4be06021f3
yt-dlp: 2024.8.6 -> 2024.9.27
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-09-28 17:05:42 +08:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Peder Bergebakken Sundt
8c8c27bb19 treewide: remove unused inputs 2024-09-18 01:00:07 +02:00
Zitrone
6c7f4e924e
yt-dlg: fix build 2024-09-02 23:35:08 +02:00
John Garcia
19db13ea48 ytdownloader: 3.18.0 -> 3.18.2 2024-08-28 12:08:44 +01:00
Ingo Reitz
237e7781f5
ytmdesktop: StartupWMClass, desktopName Capitalisation 2024-08-10 19:16:03 +02:00
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