summaryrefslogtreecommitdiff
path: root/pkgs/applications/version-management (follow)
Commit message (Expand)AuthorAgeFilesLines
* xcbutilimage: rename references and deprecate alias•••this shouldn't create any rebuilds quantenzitrone2026-02-041-2/+2
* xcbutilkeysyms: rename references and deprecate alias•••this shouldn't create any rebuilds quantenzitrone2026-02-041-2/+2
* xcbutilrenderutil: rename references and deprecate alias•••this shouldn't create any rebuilds quantenzitrone2026-02-041-2/+2
* xcbutilwm: rename references and deprecate alias•••this shouldn't create any rebuilds quantenzitrone2026-02-041-2/+2
* sublime-merge-dev: 2111 -> 2120 (#459027)Weijia Wang2026-02-031-3/+3
|\
| * sublime-merge-dev: 2111 -> 2120R. Ryantm2025-12-221-3/+3
* | svn-all-fast-export: move NIX_LDFLAGS into env for structuredAttrsStefan Frijters2026-02-011-1/+1
* | qgit: move to by-nameAliaksandr2026-01-311-43/+0
* | cgit: expand pythonPath bash array for structuredAttrsStefan Frijters2026-01-271-1/+1
* | treewide: remove references to the xorg namespace in `pkgs` (automated)•••this creates some eval errors that will be fixed in the next commit done with the following script: ```fish \#!/usr/bin/env fish set packagesjson (nix eval --impure --json --expr ' let lib = import ./lib; in import pkgs/servers/x11/xorg/default.nix (lib.mapAttrs ( name: _: if name == "lib" then lib else if name == "config" then { allowAliases = false; } else name ) (__functionArgs (import pkgs/servers/x11/xorg/default.nix))) { } ' | jq) set one (grep '^ [A-Za-z0-9_-]*$' pkgs/servers/x11/xorg/default.nix | string trim | string replace -r '$' Z | sort | string sub -e -1) set two (grep '^ [A-Za-z0-9_-]* = [A-Za-z0-9_-]*;$' pkgs/servers/x11/xorg/default.nix | cut -d= -f1 | string trim | string replace -r '$' Z | sort | string sub -e -1) for arg in $one $two set oname $arg set nname (echo $packagesjson | jq -r .$oname) if test $nname = null echo (set_color red)warn:(set_color normal) unknown package xorg.$oname >&2 continue end echo $oname "->" $nname # replace basic xorg.$name references for file in (rg -F "xorg.$oname" --files-with-matches pkgs) # special cases sd -F "$oname = xorg.$oname;" "$nname = $nname;" $file # replace sd -F "xorg.$oname" "$nname" $file # fixup function arguments # prevent duplicate function args if grep -E " ($oname|$nname),\$" $file >/dev/null continue end if grep 'xorg\..' $file >/dev/null # case1: there is more so we can't just remove the function arg if grep ' xorg,$' $file >/dev/null sd ' xorg,$' " xorg, $nname," $file else if grep ' xorg ? .*,$' $file >/dev/null sd 'xorg( ? .*),$' "xorg\$1, $nname," $file else sd -F 'xorg,' "$nname, xorg," $file end else # case there is no more xorg..* so we can just replace the function arg sd 'xorg(| ? .*),.*$' "$nname," $file end end end nix fmt ``` quantenzitrone2026-01-251-2/+2
* | cgit: add sternenseemann as maintainerAlyssa Ross2026-01-221-0/+1
* | cgit-pink: remove•••Unmaintained upstream, and no longer builds. Closes: https://github.com/NixOS/nixpkgs/pull/482335 Alyssa Ross2026-01-223-162/+108
* | blackbox: dropSigmanificient2026-01-161-65/+0
* | treewide: fix `rec-set-dynamic-attrs`•••Lix will soon warn, and in the future, error on `rec-set-dynamic-attrs`. This commit fix where attrs are dynamically set in a recursive function currently present in nixpkgs. Justin !2026-01-131-7/+7
* | monotone: fix build of temporarily-vendored botan2 with fresher C++7c6f434c2026-01-021-0/+4
* | sublime-merge: 2112 -> 2121R. Ryantm2025-12-241-3/+3
|/
* fossil: fix hash mismatch errorJustin Restivo2025-12-151-1/+1
* git: move to by-name (#470072)Aleksana2025-12-147-725/+0
|\
| * git: move to by-nameAliaksandr2025-12-127-725/+0
* | 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> Ihar Hrachyshka2025-12-1011-40/+40
|/
* treewide: reduce maintenance by globinRobin Gloster2025-12-071-1/+0
* Merge master into staging-nextnixpkgs-ci[bot]2025-11-104-207/+0
|\
| * various: migrate python3Packages to by-name (#454647)Yohann Boniface2025-11-094-207/+0
| |\
| | * various: migrate python3Packages to by-nameGuy Chronister2025-10-234-207/+0
* | | git: 2.51.1 -> 2.51.2Jon Hermansen2025-11-011-2/+2
* | | Merge remote-tracking branch 'origin/staging-next' into stagingK9002025-10-303-114/+3
|\| |
| * | various: migrate to pkgs/by-name (#456661)Sandro2025-10-292-114/+0
| |\ \
| | * | gittyup: migrate to pkgs/by-namemagicquark2025-10-292-114/+0
| * | | nixos/tests/svnserve: init (#452950)Sandro2025-10-291-0/+3
| |\ \ \ | | |/ / | |/| |
| | * | nixos/tests/svnserve: inith7x42025-10-171-0/+3
* | | | git: 2.51.0 -> 2.51.1 (#452928)Philip Taron2025-10-281-2/+2
|\ \ \ \
| * | | | git: 2.51.0 -> 2.51.1Sam Estep2025-10-171-2/+2
| | |/ / | |/| |
* | | | Merge remote-tracking branch 'origin/staging-next' into stagingK9002025-10-261-2/+2
|\ \ \ \ | | |/ / | |/| |
| * | | qgit: 2.12 -> 2.13R. Ryantm2025-10-261-2/+2
| | |/ | |/|
* | | Merge staging-next into stagingnixpkgs-ci[bot]2025-10-221-11/+19
|\| |
| * | qgit: 2.11 -> 2.12 (#448913)Guillaume Girol2025-10-221-11/+19
| |\ \
| | * | qgit: refactor, cleanupMarkus Kowalewski2025-10-051-11/+11
| | * | qgit: 2.11 -> 2.12Markus Kowalewski2025-10-051-7/+15
* | | | Merge remote-tracking branch 'origin/staging-next' into stagingK9002025-10-201-1/+0
|\| | |
| * | | maintainers: drop maggesi (#451767)Wolfgang Walther2025-10-201-1/+0
| |\ \ \
| | * | | maintainers: drop maggesi•••Inactive since 2019/2020. Wolfgang Walther2025-10-171-1/+0
| | | |/ | | |/|
* | | | Merge staging-next into stagingnixpkgs-ci[bot]2025-10-202-171/+0
|\| | |
| * | | monotoneViz: drop•••The old graphviz it relies on fails to compile with lefty.c: In function 'processinput': lefty.c:67:22: error: implicit declaration of function '__freadable' [-Wimplicit-function-declaration] 67 | #define canread(fp) (__freadable(fp)) | ^~~~~~~~~~~ lefty.c:397:13: note: in expansion of macro 'canread' 397 | canread(iop[ioi].ifp)) | ^~~~~~~ Robert Schütz2025-10-192-171/+0
* | | | Merge staging-next into stagingnixpkgs-ci[bot]2025-10-192-2/+108
|\| | |
| * | | monotone: vendor botan2 for limited use of the most stable functionality7c6f434c2025-10-192-2/+108
| |/ /
* | | Merge staging-next into stagingnixpkgs-ci[bot]2025-10-081-2/+7
|\| |
| * | fossil: 2.26 -> 2.27 (#449151)Thomas Gerbet2025-10-081-2/+7
| |\ \ | | |/ | |/|
| | * fossil: 2.26 -> 2.27•••Changes: https://fossil-scm.org/home/doc/trunk/www/changes.wiki#v2_27 Ashish SHUKLA2025-10-061-2/+7
* | | git: disable more flaky tests (#443250)Philip Taron2025-10-071-0/+6
|\ \ \ | |/ / |/| |
| * | git: disable more flaky testsTristan Ross2025-09-151-0/+6