Commit Graph

361 Commits

Author SHA1 Message Date
Sandro
776e33183a flutter: add shell completions (#509723) 2026-05-12 00:07:44 +00:00
R. Ryantm
7fe56c8fe4 flutter: 3.41.6 -> 3.41.9 2026-05-11 00:57:00 +00:00
username-generic
9c3db7cffb flutter: add shell completions 2026-05-08 11:28:49 +02:00
hacker1024
4a7fb2c8ea Revert "flutterPackages: refactor"
This reverts commit fe90d5a666.
2026-04-12 20:41:26 +10:00
hacker1024
6f26437428 Revert "flutterPackages: fix hostPlatform rename evaluation warning"
This reverts commit 3b4a0798b7.
2026-04-12 20:41:22 +10:00
ccicnce113424
3b4a0798b7 flutterPackages: fix hostPlatform rename evaluation warning 2026-04-07 13:00:04 +08:00
kyehn
fe90d5a666 flutterPackages: refactor 2026-04-03 08:09:50 +00:00
R. Ryantm
27dfede99d flutter: 3.41.5 -> 3.41.6 2026-03-30 03:20:19 +00:00
R. Ryantm
1738a6a951 flutter: 3.41.2 -> 3.41.5 2026-03-20 23:17:14 +00:00
kyehn
42c0f81a19 flutter.buildFlutterApplication: add support for finalAttrs 2026-02-28 10:01:14 +08:00
Tristan Ross
c9485e6214 dart: use dart-source in linux (#492235) 2026-02-25 23:56:43 +00:00
kyehn
93ff2420cf flutter341: 3.41.1 -> 3.41.2 2026-02-19 22:34:21 +00:00
kyehn
9a2382c7f4 dart: use dart-source in linux 2026-02-20 04:55:22 +08:00
Tristan Ross
868427e493 flutter338: 3.38.9 -> 3.38.10 (#489619) 2026-02-17 22:21:47 +00:00
qzylinra
c5479831f6 flutter341: 3.41.0 -> 3.41.1 2026-02-15 11:41:29 +08:00
kyehn
805fe4e2c5 flutter341: 3.41.0-0.3.pre -> 3.41.0 2026-02-12 02:45:18 +00:00
qzylinra
3d91759d73 flutter338: 3.38.9 -> 3.38.10 2026-02-12 10:10:31 +08:00
qzylinra
08ccb6cd3d flutter341: 3.41.0-0.2.pre -> 3.41.0-0.3.pre 2026-02-10 10:24:00 +08:00
dotlambda
0298fc501e dart: 3.10.7 -> 3.10.9 (#484614) 2026-02-08 19:57:31 +00:00
kyehn
5645616b5d dart: 3.10.7 -> 3.10.9 2026-02-08 12:16:09 +08:00
quantenzitrone
55280fa564 various: rename references from libX11 to libx11
this shouldn't create any rebuilds
2026-02-06 00:24:34 +01:00
Hythera
a8acebcc26 flutter: set pname 2026-02-03 22:05:35 +01:00
Tristan Ross
d820809713 flutter341: 3.41.0-0.1.pre -> 3.41.0-0.2.pre (#485116) 2026-01-31 00:25:12 +00:00
qzylinra
9dcd0b21b8 flutter338: 3.38.8 -> 3.38.9 2026-01-30 03:20:15 +08:00
qzylinra
e5d349cfd3 flutter341: 3.41.0-0.1.pre -> 3.41.0-0.2.pre 2026-01-30 03:14:00 +08:00
qzylinra
dab06e1ff3 flutter338: 3.38.7 -> 3.38.8 2026-01-28 06:16:23 +08:00
Tristan Ross
96963d1077 flutter341: init at 3.41.0-0.1.pre (#480864) 2026-01-27 01:51:52 +00:00
qzylinra
c43c23ff20 flutter341: 3.41.0-0.0.pre -> 3.41.0-0.1.pre 2026-01-27 09:12:02 +08:00
quantenzitrone
7d8132a92c 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
```
2026-01-25 22:28:09 +01:00
qzylinra
b009a98ee2 flutter341: init at 3.41.0-0.0.pre 2026-01-24 13:40:51 +00:00
qzylinra
cfdb4a44d9 flutter338: 3.38.6 -> 3.38.7 2026-01-16 09:15:17 +08:00
qzylinra
58b792de89 flutter338: 3.38.5 -> 3.38.6 2026-01-10 18:42:58 +08:00
qzylinra
3f6c674a0c flutter338: 3.38.4 -> 3.38.5 2025-12-23 19:46:14 +08:00
R. Ryantm
dbe15c61ad flutter: 3.38.3 -> 3.38.4 2025-12-06 10:37:22 +00:00
Aleksana
a49bbbe71e flutter: set sourceProvenance (#440682) 2025-11-28 13:54:09 +00:00
kyehn
821d61ca9b flutter338: 3.38.1 -> 3.38.3 2025-11-21 19:21:56 +00:00
kyehn
9eb85548b4 flutter338: 3.38.0 -> 3.38.1 2025-11-13 19:17:32 +00:00
kyehn
4f5e6edadf flutter338: 3.38.0-0.2.pre -> 3.38.0 2025-11-12 21:03:21 +00:00
qzylinra
78959ee6e3 flutterPackages-source: clean 2025-11-11 09:16:56 +00:00
qzylinra
5b6735adf9 flutter: remove unused code 2025-11-05 05:58:57 +00:00
qzylinra
e61e676f4b flutter338: init at 3.38.0-0.2.pre 2025-11-03 07:14:56 +00:00
Tristan Ross
82524b42b4 flutter335: 3.35.5 -> 3.35.7 (#450619) 2025-11-01 16:54:50 +00:00
qzylinra
ee21b31ef7 flutter327: drop 2025-10-30 19:30:14 +00:00
qzylinra
9106d8f922 flutter324: drop 2025-10-29 23:30:41 +00:00
qzylinra
b9ae5776db flutter335: 3.35.5 -> 3.35.7 2025-10-24 04:30:44 +00:00
Wolfgang Walther
c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00
kyehn
2978a603a6 flutter335: 3.35.4 -> 3.35.5 2025-09-30 03:03:26 +00:00
qzylinra
9a6d3d4db4 flutter: 3.35.3 -> 3.35.4 2025-09-19 06:31:37 +00:00
Sandro
895fd1610f flutter335: fix android build (#435027) 2025-09-16 16:13:39 +00:00
Sandro
b780ce5f51 flutter335: fix macos build (#434503) 2025-09-16 12:02:12 +00:00