Commit Graph

47 Commits

Author SHA1 Message Date
Austin Horstman
29b5737264
btop: add versionCheckHook 2024-10-31 19:47:26 -05:00
Austin Horstman
e04f0c4897
btop: apple-sdk_11 -> apple-sdk_15 2024-10-31 19:24:13 -05:00
Austin Horstman
749ed8cfba
btop: switch to apple-sdk_11 2024-10-31 09:53:01 -05:00
Austin Horstman
684ccea449
btop: add khaneliman maintainer 2024-10-23 23:51:24 -05: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
27164432bc btop: 1.3.2 -> 1.4.0 2024-09-22 12:27:43 +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
Jonathan Ringer
70afa1fea2 btop: use pkgs.autoAddDriverRunpath 2024-04-08 14:29:24 -07:00
Maximilian Güntner
cb45d3a979 btop: enable ROCm support 2024-03-19 22:33:07 +01:00
Yann Hamdaoui
63746cac08
cudaPackages: generalize and refactor setup hook
This PR refactor CUDA setup hooks, and in particular
autoAddOpenGLRunpath and autoAddCudaCompatRunpathHook, that were using a
lot of code in common (in fact, I introduced the latter by copy pasting
most of the bash script of the former). This is not satisfying for
maintenance, as a recent patch showed, because we need to duplicate
changes to both hooks.

This commit abstract the common part in a single shell script that
applies a generic patch action to every elf file in the output. For
autoAddOpenGLRunpath the action is just addOpenGLRunpath (now
addDriverRunpath), and is few line function for
autoAddCudaCompatRunpathHook.

Doing so, we also takes the occasion to use the newer addDriverRunpath
instead of the previous addOpenGLRunpath, and rename the CUDA hook to
reflect that as well.

Co-Authored-By: Connor Baker <connor.baker@tweag.io>
2024-03-15 15:54:21 +01:00
Lin Xianyi
3d2e91a7c9 btop: 1.3.1 -> 1.3.2
Diff: https://github.com/aristocratos/btop/compare/v1.3.1...v1.3.2

Changelog: https://github.com/aristocratos/btop/blob/v1.3.2/CHANGELOG.md
2024-02-22 10:12:53 +08:00
R. Ryantm
f175144335 btop: 1.3.0 -> 1.3.1 2024-02-12 03:31:37 +00:00
natsukium
7bb7c3079b
btop: enable nvidia gpu support 2024-01-24 22:37:32 +09:00
Adam Stephens
8427d946ac
btop: 1.2.13 -> 1.3.0
Diff: https://github.com/aristocratos/btop/compare/v1.2.13...v1.3.0

Changelog: https://github.com/aristocratos/btop/blob/v1.3.0/CHANGELOG.md
2024-01-15 09:54:42 -05:00
h7x4
41974d5ed9
treewide: add mainProgram 2023-11-27 02:17:53 +01:00
Austin Horstman
ad07cd4fc2
treewide: add version tests (#255781) 2023-09-18 22:58:14 +03:00
Weijia Wang
4dcd4c38e8 btop: cleanup 2023-07-10 14:50:26 +03:00
Fabian Affolter
cc62af3246
btop: move hash 2022-11-08 12:14:23 +01:00
Steven Kou
3dfbc6f54e
btop: 1.2.12 -> 1.2.13 2022-11-08 17:40:43 +08:00
Steven Kou
31a74e4893
btop: 1.2.9 -> 1.2.12 2022-10-24 23:39:17 +08:00
Theodore Ni
aa9b769451
btop: reenable stackprotector on aarch64-darwin
The original error that required disabling the stack protector on
aarch64-darwin has been fixed in GCC.
2022-09-04 13:21:38 -07:00
Netali
64e9c70499
btop: 1.2.8 -> 1.2.9 2022-08-29 23:31:45 +02:00
R. Ryantm
3014367d9e btop: 1.2.7 -> 1.2.8 2022-07-07 11:31:32 +02:00
Michael Adler
f0bc9d6258 btop: 1.2.6 -> 1.2.7 2022-06-24 13:26:03 +02:00
R. Ryantm
9e2b395ec4 btop: 1.2.5 -> 1.2.6 2022-04-22 06:56:13 +00:00
R. Ryantm
14eb3ead59 btop: 1.2.4 -> 1.2.5 2022-03-06 02:15:18 +00:00
R. Ryantm
af759f135c btop: 1.2.3 -> 1.2.4 2022-02-28 02:05:00 +00:00
R. Ryantm
4ed2fdfca7 btop: 1.2.2 -> 1.2.3 2022-02-16 05:10:09 +00:00
R. Ryantm
c22dfd85d2 btop: 1.2.1 -> 1.2.2 2022-02-13 16:21:34 +00:00
R. Ryantm
da87425c81 btop: 1.2.0 -> 1.2.1 2022-02-12 20:31:46 -08:00
Steven Kou
966a7403df btop: 1.1.4 -> 1.2.0 2022-01-17 16:58:56 +01:00
Joel
eb5c249b40
btop: 1.1.3 -> 1.1.4 2022-01-07 23:44:01 +10:00
Enno Richter
022facde9a btop: remove reference to gcc 2021-12-31 18:09:07 +01:00
Steven Sherry
0aaf5768e5
btop: Remove gcc11 as a nativeBuildInput for darwin since gcc11Stdenv is
already set in all-packages.nix
2021-12-29 17:13:02 -06:00
Steven Sherry
aa9c18ef07
btop: Address initial pr review comments 2021-12-24 08:24:15 -06:00
Steven Sherry
536ef35065
btop: Add darwin support 2021-12-24 01:04:49 -06:00
R. Ryantm
9bd8d83f93 btop: 1.1.2 -> 1.1.3 2021-12-21 19:48:08 +00:00
Fabian Affolter
609ab2cdc4 btop: 1.1.0 -> 1.1.2 2021-11-27 18:58:49 +01:00
Bernardo Meurer
fbe394aad2
btop: 1.0.24 -> 1.1.0 2021-11-14 21:16:34 -08:00
Bernardo Meurer
4ae0f5f9ad
btop: 1.0.20 -> 1.0.24 2021-11-09 11:00:59 -08:00
R. Ryantm
02facd2d44 btop: 1.0.18 -> 1.0.20 2021-10-29 04:44:23 +00:00
figsoda
6cddd6c6bf btop: 1.0.16 -> 1.0.18 2021-10-19 16:11:31 -04:00
Bernardo Meurer
f23899c9c1
btop: 1.0.13 -> 1.0.16 2021-10-17 23:56:00 -07:00
Fabian Affolter
966763c5b1 btop: 1.0.10 -> 1.0.13 2021-10-03 23:11:02 +02:00
Andreas
de0bf891e9 btop: 1.0.9 -> 1.0.10 2021-09-29 18:51:05 +02:00
Michael Adler
52d2792162 btop: 1.0.5 -> 1.0.9 2021-09-28 11:28:35 +02:00
Robert T. McGibbon
9f08c2d4b9 btop: init at 1.0.5 2021-09-23 08:38:36 -04:00