Commit Graph

14 Commits

Author SHA1 Message Date
Kenichi Kamiya
a8fd645b08
komac: add shell completions
The feature was introduced in version v2.4.0

- https://github.com/russellbanks/Komac/releases/tag/v2.4.0
- 3fb3571952

To enable cross compilation, we have to skip generating these in some cases.

e19e156796/doc/hooks/installShellFiles.section.md (L87-L110)

Co-authored-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-12-06 04:24:56 +09:00
Peder Bergebakken Sundt
8fff01c7e8 komac: remove refs/tags/ from github release meta.changelog 2024-11-05 12:50:10 +01:00
Heitor Augusto
d1893e8cde
komac: ensure that source is a tag 2024-10-15 23:52:04 -03:00
Heitor Augusto
96562536ca
komac: add updateScript 2024-10-15 23:51:16 -03:00
Heitor Augusto
91abcc0446
komac: add version check 2024-10-15 23:51:16 -03:00
Heitor Augusto
6c2ee69451
komac: format with nixfmt-rfc-style 2024-10-15 23:51:16 -03:00
Heitor Augusto
f40a7a80c4
komac: remove with lib from meta 2024-10-15 23:51:12 -03: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
c9b2d5c47c komac: 2.5.0 -> 2.6.0 2024-08-31 13:42:47 +00:00
Heitor Augusto
7034c34fd0 komac: 2.2.1 -> 2.5.0 2024-08-27 16:15:45 +00:00
Heitor Augusto
096a5c4450 komac: add HeitorAugustoLN as a maintainer 2024-08-22 17:44:26 +00:00
Alexis Hildebrandt
f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00
Kenichi Kamiya
263d444693
komac: 2.1.0 -> 2.2.1 2024-05-08 11:01:08 +09:00
Kenichi Kamiya
868e93937c
komac: init at 2.1.0
komac: relax to specify Apple SDK version

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>

komac: correct to choose GPL options

Allowed later versions e3be88a29b/README.md (L167)

And gpl3 specifier is deprecated 849cb60b10/lib/licenses.nix (L1283)

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
2024-04-04 18:52:35 +09:00