about summary refs log tree commit diff
path: root/pkgs/tools/system/gptman/default.nix
AgeCommit message (Collapse)AuthorFilesLines
5 daystreewide: replace `stdenv.is` with `stdenv.hostPlatform.is`Artturin1-1/+1
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-06-09treewide: Remove indefinite article from meta.descriptionAlexis Hildebrandt1-1/+1
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-01-16gptman: 1.0.2 -> 1.1.0R. Ryantm1-3/+3
2023-11-27treewide: add mainProgramh7x41-0/+1
2023-09-19gptman: 1.0.1 -> 1.0.2R. Ryantm1-3/+3
2023-08-15gptman: 0.8.3 -> 1.0.1Aaron Jheng1-7/+13
2022-01-11gptman: 0.8.2 -> 0.8.3R. RyanTM1-3/+3
(#154532)
2021-12-07gptman: 0.8.0 -> 0.8.2R. Ryantm1-3/+3
2021-05-16gptman: fix darwin buildStéphan Kochen1-1/+3
2021-04-25gptman: init at 0.8.0Aksh Gupta1-0/+22