Commit Graph

11 Commits

Author SHA1 Message Date
Christina Sørensen
7e3a13be53
convco: 0.6.0 -> 0.6.1
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-10-25 07:06:26 +02: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
d77d5f5ac7 convco: 0.5.2 -> 0.6.0 2024-09-09 01:54:21 +00:00
R. Ryantm
a9ca0d3568 convco: 0.5.1 -> 0.5.2 2024-07-24 00:57:15 +00:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
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-06-09 23:07:45 +02:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
R. Ryantm
20acfe375a convco: 0.5.0 -> 0.5.1 2024-03-09 00:26:47 +00:00
R. Ryantm
638d9ebd50 convco: 0.4.3 -> 0.5.0 2023-12-09 10:12:34 +00:00
Christina Sørensen
9dc7d7106a
convco: add cafkafk as maintainer
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-10-04 05:16:19 +02:00
Christina Sørensen
7fa35ad84d
convco: 0.4.2 -> 0.4.3
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-10-04 05:15:58 +02:00
Christina Sørensen
4f694f3ab8
convco: move to pkgs/by-name
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-10-03 12:55:12 +02:00