<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nixos/nixpkgs.git/pkgs/development/compilers/dart/source, branch master</title>
<subtitle>Nix Packages collection</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/'/>
<entry>
<title>Revert "flutterPackages: refactor"</title>
<updated>2026-04-12T10:41:26+00:00</updated>
<author>
<name>hacker1024</name>
<email>hacker1024@users.sourceforge.net</email>
</author>
<published>2026-04-12T10:41:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=4a7fb2c8ea171e000d96df759bd743c1d02fadaa'/>
<id>4a7fb2c8ea171e000d96df759bd743c1d02fadaa</id>
<content type='text'>
This reverts commit fe90d5a666a4d649ddb35bf6d617bf5e98be777c.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit fe90d5a666a4d649ddb35bf6d617bf5e98be777c.
</pre>
</div>
</content>
</entry>
<entry>
<title>flutterPackages: refactor</title>
<updated>2026-04-03T08:09:50+00:00</updated>
<author>
<name>kyehn</name>
<email>kyehn@users.noreply.github.com</email>
</author>
<published>2026-03-28T09:33:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=fe90d5a666a4d649ddb35bf6d617bf5e98be777c'/>
<id>fe90d5a666a4d649ddb35bf6d617bf5e98be777c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>dart: 3.11.2 -&gt; 3.11.4</title>
<updated>2026-03-31T20:19:53+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2026-03-31T20:19:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=5dac2a245511d0c44c3974026d521f826afbc386'/>
<id>5dac2a245511d0c44c3974026d521f826afbc386</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>dart: 3.11.0 -&gt; 3.11.2</title>
<updated>2026-03-14T12:00:11+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2026-03-14T12:00:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=6e809745593242f1238b599604d0aef2611c6d8b'/>
<id>6e809745593242f1238b599604d0aef2611c6d8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>dart-source: don't clobber `passthru` elements</title>
<updated>2026-02-27T22:28:20+00:00</updated>
<author>
<name>Sergei Trofimovich</name>
<email>slyich@gmail.com</email>
</author>
<published>2026-02-27T22:28:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=34eea7176a04a6921333ee318754971ec1e8a091'/>
<id>34eea7176a04a6921333ee318754971ec1e8a091</id>
<content type='text'>
Without the change `passthru` override deleted `fetchGitHashesScript`
entry and caused updater scripts to fail:

```
$ nix-instantiate -A butterfly.updateScript
error:
       … while evaluating the attribute 'command'
         at pkgs/common-updater/combinators.nix:190:7:
          189|     {
          190|       command = commandsToShellInvocation (map ({ command, ... }: command) scripts);
             |       ^
          191|       supportedFeatures =

       … while evaluating the attribute 'paths'
         at pkgs/common-updater/combinators.nix:91:7:
           90|       commands = commands ++ [ new.args ];
           91|       paths = paths ++ new.paths;
             |       ^
           92|       maxArgIndex = new.maxArgIndex;

       (stack trace truncated; use '--show-trace' to show the full, detailed trace)

       error: attribute 'fetchGitHashesScript' missing
       at pkgs/by-name/bu/butterfly/package.nix:64:11:
           63|         command = [
           64|           dart.fetchGitHashesScript
             |           ^
           65|           "--input"
```

Let's use attribute merge instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Without the change `passthru` override deleted `fetchGitHashesScript`
entry and caused updater scripts to fail:

```
$ nix-instantiate -A butterfly.updateScript
error:
       … while evaluating the attribute 'command'
         at pkgs/common-updater/combinators.nix:190:7:
          189|     {
          190|       command = commandsToShellInvocation (map ({ command, ... }: command) scripts);
             |       ^
          191|       supportedFeatures =

       … while evaluating the attribute 'paths'
         at pkgs/common-updater/combinators.nix:91:7:
           90|       commands = commands ++ [ new.args ];
           91|       paths = paths ++ new.paths;
             |       ^
           92|       maxArgIndex = new.maxArgIndex;

       (stack trace truncated; use '--show-trace' to show the full, detailed trace)

       error: attribute 'fetchGitHashesScript' missing
       at pkgs/by-name/bu/butterfly/package.nix:64:11:
           63|         command = [
           64|           dart.fetchGitHashesScript
             |           ^
           65|           "--input"
```

Let's use attribute merge instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>dart: use dart-source in linux</title>
<updated>2026-02-19T20:55:22+00:00</updated>
<author>
<name>kyehn</name>
<email>kyehn@users.noreply.github.com</email>
</author>
<published>2026-02-19T20:55:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=9a2382c7f43ceedfe20e3e16cb7def6a7fc0e10c'/>
<id>9a2382c7f43ceedfe20e3e16cb7def6a7fc0e10c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>dart-source: init</title>
<updated>2026-02-13T18:29:24+00:00</updated>
<author>
<name>kyehn</name>
<email>kyehn@users.noreply.github.com</email>
</author>
<published>2026-02-13T18:29:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=33c711cb95457ac1bba2acacc7a340bfe3599103'/>
<id>33c711cb95457ac1bba2acacc7a340bfe3599103</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
