Commit Graph

8 Commits

Author SHA1 Message Date
zowoq
580741f0fa git-interactive-rebase-tool: switch to apple-sdk_11 2024-11-05 10:46:53 +10:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
R. Ryantm
f88031231e git-interactive-rebase-tool: 2.4.0 -> 2.4.1 2024-06-28 11:23:27 +10:00
zowoq
a31a131892 git-interactive-rebase-tool: 2.3.0 -> 2.4.0
Diff: https://github.com/MitMaro/git-interactive-rebase-tool/compare/2.3.0...2.4.0

Changelog: https://github.com/MitMaro/git-interactive-rebase-tool/releases/tag/2.4.0
2024-06-14 14:01:23 +10:00
Sandro Jäckel
421191ba79
git-interactive-rebase-tool: fix build with rust 1.77 2024-04-20 16:50:48 +02:00
Maximilian Bosch
8f4b294409
git-interactive-rebase-tool: actually run tests 2023-07-21 12:06:38 +02:00
Sandro Jäckel
55e7f425a2 git-interactive-rebase-tool: 2.2.1 -> 2.3.0, drop intactive maintainer 2023-07-21 14:32:35 +10:00
AndersonTorres
d994dabace treewide: remove git-and-tools directory
We do not use a "plugin system" for Git addons anymore, and therefore this
directory is no longer useful. Indeed that directory is way more confusing,
given that it includes more than mere Git addons, going from Bitbucket server
command-line tools to complete rewrites of Git in exotic programming languages.

Also, without this directory, the mental load of decision-making reduces a lot.
When anyone is interested in including a new git-related tool, just put it into
pkgs/applications/version-management, without apologies.
2022-12-19 15:05:22 -03:00