Commit Graph

15 Commits

Author SHA1 Message Date
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
Robert Schütz
51d752cdaf texworks: 0.6.8 -> 0.6.9
Diff: https://github.com/TeXworks/texworks/compare/release-0.6.8...release-0.6.9

Changelog: https://github.com/TeXworks/texworks/blob/release-0.6.9/NEWS
2024-02-13 12:06:04 -08:00
h7x4
41974d5ed9
treewide: add mainProgram 2023-11-27 02:17:53 +01:00
Yǔchēn Guō 郭宇琛
a5934c1de6 texworks: add qtwayland as dependency
Signed-off-by: Yǔchēn Guō 郭宇琛 <yguo@posteo.net>
2023-11-14 11:49:01 +01:00
Nick Cao
d0565d403e
texworks: add patch to fix build with qt 6.5 2023-04-16 22:17:30 +08:00
Robert Schütz
60448a8845 texworks: 0.6.7 -> 0.6.8
also use Qt 6

Diff: https://github.com/TeXworks/texworks/compare/release-0.6.7...release-0.6.8

Changelog: https://github.com/TeXworks/texworks/blob/release-0.6.8/NEWS
2023-02-21 22:08:47 -08:00
R. Ryantm
22ce0cf364 texworks: 0.6.6 -> 0.6.7 2022-02-27 21:17:30 +00:00
Robert Schütz
fc1e1ad891 texworks: 0.6.5 -> 0.6.6 2021-03-12 22:14:29 +01:00
Robert Schütz
b2e5c48ab3 texworks: use Qt 5.15 2021-02-03 15:28:45 +01:00
R. RyanTM
9fa951a20a texworks: 0.6.4 -> 0.6.5 2020-04-01 19:32:43 -07:00
Jonathan Ringer
aaefb947ea texworks: fix qt build 2020-03-18 15:59:17 -07:00
R. RyanTM
12be6698e8 texworks: 0.6.3 -> 0.6.4
(cherry picked from commit b35de30a2b)
2020-03-18 15:59:17 -07:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Robert Schütz
36cbb7c45e texworks: 0.6.2 -> 0.6.3 2019-03-17 16:28:22 +01:00
Robert Schütz
50d52ac8a8 texworks: init at 0.6.2 2017-09-21 00:58:49 +02:00