Compare commits

...

12 commits

Author SHA1 Message Date
nixpkgs-ci[bot]
898a927db1
Merge master into staging-nixos 2026-07-06 18:40:22 +00:00
nixpkgs-ci[bot]
9087ac5715
Merge master into staging-nixos 2026-07-06 13:17:08 +00:00
nixpkgs-ci[bot]
40573e7f77
Merge master into staging-nixos 2026-07-06 07:35:38 +00:00
nixpkgs-ci[bot]
e42ef7ee44
Merge master into staging-nixos 2026-07-06 00:39:44 +00:00
Robert Helgesson
4a0fcce008
mkfontdir: 1.2.3 -> 1.2.4 (#511300) 2026-07-05 20:32:20 +00:00
nixpkgs-ci[bot]
1000f8c8c0
Merge master into staging-nixos 2026-07-05 18:25:17 +00:00
nixpkgs-ci[bot]
8e3daa795b
Merge master into staging-nixos 2026-07-05 12:31:15 +00:00
nixpkgs-ci[bot]
5db7cbffff
Merge master into staging-nixos 2026-07-05 07:08:27 +00:00
nixpkgs-ci[bot]
efca98b5ab
Merge master into staging-nixos 2026-07-05 06:16:07 +00:00
Donovan Glover
66bf50f1aa
yt-dlp: 2026.06.09 -> 2026.07.04 (#538528) 2026-07-05 03:59:15 +00:00
Jost Alemann
14e9021444 yt-dlp: 2026.06.09 -> 2026.07.04
Changelog: https://github.com/yt-dlp/yt-dlp/releases/tag/2026.07.04
Diff: https://github.com/yt-dlp/yt-dlp/compare/2026.06.09...2026.07.04
2026-07-05 00:54:57 +02:00
R. Ryantm
6c4ea36aa2 mkfontdir: 1.2.3 -> 1.2.4 2026-04-19 02:44:11 +00:00
2 changed files with 4 additions and 4 deletions

View file

@ -11,11 +11,11 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mkfontscale";
version = "1.2.3";
version = "1.2.4";
src = fetchurl {
url = "mirror://xorg/individual/app/mkfontscale-${finalAttrs.version}.tar.xz";
hash = "sha256-KSHNw0TxrO4EvNbqHilWXBMIJjAG4TSp7jjPnJ1v514=";
hash = "sha256-oBSSoXqbbA7j+S7leIUOMFMVufKY2l8AahzUtR2wGl4=";
};
strictDeps = true;

View file

@ -32,14 +32,14 @@ python3Packages.buildPythonApplication rec {
# The websites yt-dlp deals with are a very moving target. That means that
# downloads break constantly. Because of that, updates should always be backported
# to the latest stable release.
version = "2026.06.09";
version = "2026.07.04";
pyproject = true;
src = fetchFromGitHub {
owner = "yt-dlp";
repo = "yt-dlp";
tag = version;
hash = "sha256-ykqTDPzKKIWRGSQmw2esCRKyYqDZKXRYDeba888tkDU=";
hash = "sha256-+oHcVylLXFJTRR6jXF6IXvgntXJz0tRdtnwTruRPkoc=";
};
postPatch = ''