Commit Graph

118 Commits

Author SHA1 Message Date
jopejoe1
30d4094d17 lcevcdec: 4.2.0 -> 4.2.1 2026-08-13 17:24:49 +02:00
Mauricio Collares
e008a8fd7b lcalc: fix build 2026-08-01 09:51:55 -03:00
Eman Resu
ff094f60ad treewide: replace more singleton license lists 2026-07-15 14:04:39 -04:00
nixpkgs-ci[bot]
c4c9ab3a7d Merge master into staging-next 2026-07-01 00:47:18 +00:00
Peder Bergebakken Sundt
9985fdb685 lc0: 0.31.2 -> 0.32.1 (#518190) 2026-06-30 21:21:17 +00:00
Martin Weinelt
9ade44f1d4 Merge remote-tracking branch 'origin/staging' into staging-next
Conflicts:
- pkgs/top-level/nixpkgs-basic-release-checks.nix
2026-06-27 01:13:12 +02:00
Alex James
92abf8b18c lcevcdec: fix build on Darwin
lcevcdec's CMake configuration uses libtool on Darwin starting with
4.2.0 [1]. Add it to nativeBuildInputs to fix the build on Darwin.

[1]: a254bd4746/cmake/modules/Platform/MACOS.cmake (L37-L40)
2026-06-25 19:43:17 -07:00
K900
edf8f2c356 Merge remote-tracking branch 'origin/staging-next' into staging 2026-06-20 15:55:36 +03:00
R. Ryantm
c6a34e8a55 lcevcdec: 4.1.0 -> 4.2.0 2026-06-20 04:38:56 +00:00
dotlambda
038d956e73 lcms: 2.18 -> 2.19.1 (#513241) 2026-06-01 19:38:14 +00:00
Mauricio Collares
3c7af11c22 lcalc: 2.1.1 -> 2.2.1 (#507783) 2026-05-29 23:54:40 +00:00
R. Ryantm
2ca587c602 lcms: 2.18 -> 2.19.1 2026-05-20 11:09:03 +00:00
Thomas Butter
63b5d39440 lc0: 0.31.2 -> 0.32.1 2026-05-08 21:20:10 +00:00
R. Ryantm
e7f7a46926 lcevcdec: 4.0.5 -> 4.1.0 2026-05-06 20:05:08 +00:00
R. Ryantm
9e0f080368 lcalc: 2.1.1 -> 2.2.1 2026-04-08 00:27:43 +00:00
Lisanna Dettwyler
8885f0c93a lcab: use https for sources
Signed-off-by: Lisanna Dettwyler <lisanna.dettwyler@gmail.com>
2026-03-21 12:30:12 -04:00
Yohann Boniface
bf0c3a7f82 maintainers: drop dezgeg (#493007) 2026-03-01 21:36:40 +00:00
nixpkgs-ci[bot]
085a49826d Merge master into staging-next 2026-02-22 12:08:22 +00:00
Marcin Serwin
76e87812ad lcov: 2.3.2 -> 2.4 (#473071) 2026-02-22 11:53:40 +00:00
Marcin Serwin
59364fb99a maintainers: drop dezgeg
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2026-02-22 12:43:51 +01:00
nixpkgs-ci[bot]
e88108f433 Merge master into staging-next 2026-02-19 18:18:44 +00:00
Stefan Frijters
3d2328c2e9 lc3tools: move env variable(s) into env for structuredAttrs 2026-02-19 15:59:53 +01:00
nixpkgs-ci[bot]
b4ba356401 Merge master into staging-next 2026-02-16 11:40:30 +00:00
jopejoe1
0a8366b484 lcevcdec: 4.0.4 -> 4.0.5 2026-02-16 12:00:26 +01:00
nixpkgs-ci[bot]
a4b9c6f754 Merge staging-next into staging 2026-02-07 12:08:23 +00:00
quantenzitrone
626f23ce26 various: switch packages to use finalAttrs
this shouldn't create any rebuilds

the following script was used to generate this:
```fish
#!/usr/bin/env fish

# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}

set base (git rev-parse HEAD)

set scope pkgs/by-name

set files (rg --files-with-matches -F 'stdenv.mkDerivation rec {' $scope | sort -u)

for file in $files
    echo $file
    sd -F 'stdenv.mkDerivation rec {' 'stdenv.mkDerivation (finalAttrs: {' $file
    # version
    sd -F 'version}' 'finalAttrs.version}' $file
    sd -F '${version' '${finalAttrs.version' $file
    sd -F '= version' '= finalAttrs.version' $file
    sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
    sd -F ' + version;' ' + finalAttrs.version;' $file
    sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
    sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
    sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
    sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
    # src
    sd -F 'src}' 'finalAttrs.src}' $file
    sd -F '${src' '${finalAttrs.src' $file
    sd -F '= src' '= finalAttrs.src' $file
    sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
    sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
    # meta
    sd -F '${meta' '${finalAttrs.meta' $file
    sd -F '= meta' '= finalAttrs.meta' $file
    sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
    # other
    sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
    sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
    sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
    sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
    sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
    sd -F 'libPath}' 'finalAttrs.libPath}' $file
    sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
    sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
    sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
    sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
    sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
    sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
    # pname (restored afterwards)
    sd -F 'pname}' 'finalAttrs.pname}' $file
    sd -F '${pname' '${finalAttrs.pname' $file
    sd -F '= pname' '= finalAttrs.pname' $file
    # close finalAttrs lambda
    echo ')' >>$file
    # catch some errors early
    if ! nixfmt $file
        git restore $file
        continue
    end
    if ! nixf-diagnose -i sema-primop-overridden $file
        git restore $file
        continue
    end
end

set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
    git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
    git restore $torestore
end

# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore

for file in $files
    # file hasn't changed
    if git diff --quiet $base $file
        continue
    end
    # try to eval the package to definitely catch all errors
    echo $file
    set pname (string split / $file -f 4)
    if ! nix eval .#$pname
        set torestore $torestore $file
    end
end

# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
    git restore $torestore
end
```

after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
2026-02-07 09:59:05 +01:00
K900
3c4102eef4 Merge remote-tracking branch 'origin/staging-next' into staging 2026-02-06 15:58:23 +03:00
quantenzitrone
55280fa564 various: rename references from libX11 to libx11
this shouldn't create any rebuilds
2026-02-06 00:24:34 +01:00
K900
bb03abf4d7 Merge remote-tracking branch 'origin/staging-next' into staging 2026-02-05 15:32:40 +03:00
Gergő Gutyina
1b9d1caaff various: fix pname misuse in urls (#483962) 2026-02-05 10:12:27 +00:00
quantenzitrone
9c8e96055a various: fix pname misuse in urls 2026-02-05 01:51:59 +01:00
Sandro
ea913a5e95 lcms: 2.17 -> 2.18 (#478580) 2026-02-02 17:30:54 +00:00
Fernando Rodrigues
3562403503 treewide: fetchFromGitea -> fetchFromCodeberg
Most packages that used fetchFromGitea fetch their sources from Codeberg, so might as well migrate them.

The following command was used for this treewide:
```fish
for i in (rg 'fetchFromGitea \{\n *domain = "codeberg.org";' --multiline --files-with-matches)
    sed -z 's/fetchFromGitea {\n *domain = "codeberg.org";/fetchFromCodeberg {/g' $i > $i.tmp && mv $i.tmp $i
    sed -i 's/fetchFromGitea/fetchFromCodeberg/g' $i
end
```

The following paths were manually edited:

* pkgs/by-name/xr/xrsh/package.nix
* pkgs/applications/networking/browsers/librewolf/src.nix
* pkgs/by-name/go/gotosocial/package.nix
* pkgs/by-name/ka/katawa-shoujo-re-engineered/package.nix

Co-authored-by: Gutyina Gergő <gutyina.gergo.2@gmail.com>
Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2026-01-31 21:08:16 +11:00
quantenzitrone
6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00
nixpkgs-ci[bot]
bf69762f2a Merge master into staging-next 2026-01-21 00:19:20 +00:00
R. Ryantm
ff649fab6d lctime: 0.0.27 -> 0.0.28; use finalAttrs & add changelog 2026-01-20 14:47:10 +01:00
R. Ryantm
8068bd6bda lcms: 2.17 -> 2.18 2026-01-10 00:36:49 +00:00
Stefan Frijters
28d8286a15 lcms2: move LDFLAGS into env for structuredAttrs 2026-01-07 21:30:35 +01:00
Michael Daniels
9a04427f2c maintainers: remove dtzWill
Totally inactive on GitHub since August 2024.
2026-01-01 12:33:41 -05:00
R. Ryantm
df92944c6c lcov: 2.3.2 -> 2.4 2025-12-21 19:36:49 +00:00
nixpkgs-ci[bot]
4fa909c6b1 Merge master into staging-next 2025-12-17 15:26:13 +00:00
R. Ryantm
e67ae02b83 lctime: 0.0.26 -> 0.0.27 2025-12-17 19:56:23 +08:00
Wolfgang Walther
46c0c0eae7 Merge branch 'staging-next' into staging 2025-12-10 18:42:31 +01:00
Ihar Hrachyshka
567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00
nixpkgs-ci[bot]
ebb50b71c5 Merge staging-next into staging 2025-11-27 12:07:51 +00:00
R. Ryantm
79fb00542a lcevcdec: 4.0.3 -> 4.0.4 2025-11-27 02:42:47 +00:00
Jonathan Davies
116036d574 treewide: Remove redundant versionCheckProgramArg = "--version"; with:
```shell
git grep -l -e 'versionCheckProgramArg = "--version";' -e 'versionCheckProgramArg = \[ "--version" \];' | while read f; do
  sed -i '/versionCheckProgramArg/d' "$f"
  sed -i '/^$/N;/\n$/D' "$f"
done
```
2025-11-20 10:39:02 +00:00
R. Ryantm
9d250a4ed1 lcrq: 0.3.0 -> 0.3.1 2025-11-07 06:41:35 +00:00
R. Ryantm
6e08682e02 lcevcdec: 4.0.2 -> 4.0.3 2025-10-31 02:33:34 +00:00
nixpkgs-merge-bot[bot]
73d5d11d14 lcrq: 0.2.4 -> 0.3.0 (#454036) 2025-10-25 10:19:48 +00:00