Commit Graph

44 Commits

Author SHA1 Message Date
Philip Taron
127ea2d80e
htop: fix configure.am error with --enable-sensors
Commit 23c81659b5 didn't get the configure flag quite right. According to https://github.com/htop-dev/htop/blob/main/configure.ac#L671, it's `--enable-sensors`, not `--with-sensors`.

I tested this out locally with 

```
programs.htop = {
    enable = true;
    package = pkgs.htop.overrideAttrs (prev: {
      configureFlags = [
        "--enable-unicode"
        "--sysconfdir=/etc"
        "--enable-affinity"
        "--enable-capabilities"
        "--enable-delayacct"
        "--enable-sensors"
      ];
    });
  };
```
2023-08-31 13:40:13 -07:00
Robert Hensing
34ee0260ec treewide: Add meta.mainProgram
Based on ofborg feedback.
Part of https://github.com/NixOS/nixpkgs/pull/246386
2023-08-01 12:21:05 +02:00
Thiago Kenji Okada
0dc164866a htop-vim: unstable-2022-05-24 -> unstable-2023-02-16 2023-02-24 19:27:41 +00:00
R. Ryantm
6fa50db065 htop: 3.2.1 -> 3.2.2 2023-02-09 06:33:52 +00:00
novenary
feaf1a72bc htop: enable extra features 2023-01-22 23:20:07 +02:00
Adam Joseph
42815b4a0c treewide: systemdSupport: use lib.meta.availableOn
Many packages have some kind of flag indicating whether or not to build with
systemd support.  Most of these default to `stdenv.isLinux`, but systemd does
not build on (and is marked `broken` for) `isStatic`.  Only a few packages have
the needed `&& !isStatic` in the default value for their parameter.

This commit moves the logic for the default value of these flags into
`systemd.meta.{platforms,badPlatforms}` and evaluates those conditions using
`lib.meta.availableOn`.

This provides three benefits:

1. The default values are set correctly (i.e. including `&& isStatic`)

2. The default values are set consistently

3. The way is paved for any future non-Linux systemd platforms (FreeBSD is
   reported to have experimental systemd support)
2023-01-22 00:27:19 -08:00
Dmitry Bogatov
ab5a0dbfe9 pkgsStatic.htop: fix build 2023-01-04 18:20:44 -05:00
Thiago Kenji Okada
475b010143 htop-vim: unstable-2021-10-11 -> unstable-2022-05-24 2022-06-06 18:26:38 +01:00
Sandro Jäckel
85731306fe
htop: 3.2.0 -> 3.2.1 2022-06-06 16:05:50 +02:00
Sandro
1fddd7401a
htop: remove linux only hint from description
because it also works on darwin
2022-05-02 22:43:07 +02:00
Sandro Jäckel
db312071f9
htop: 3.1.2 -> 3.2.0 2022-05-02 14:29:08 +02:00
Sandro Jäckel
6022fd57b2
htop: add SuperSandro2000 as maintainer 2022-05-02 14:29:08 +02:00
Sandro Jäckel
9f0746f997
htop: make changelog url better clickable 2022-05-02 12:01:54 +02:00
Sandro Jäckel
b1b3f87d63
htop: remove with lib over entire file 2022-05-02 12:01:30 +02:00
R. Ryantm
8feff1e9f7 htop: 3.1.1 -> 3.1.2 2021-12-07 03:48:08 +00:00
Samuel Gräfenstein
63a61947b9
htop-vim: add meta.mainProgram 2021-11-24 14:21:02 +01:00
Thiago Kenji Okada
4e89efeed0 htop-vim: init at unstable-2021-10-11 2021-11-20 02:28:54 -03:00
Sean Buckley
83b1c5b70c htop: 3.1.0 -> 3.1.1 2021-10-25 15:27:42 -04:00
Maciej Krüger
3f46ed7457
htop: set sysconfdir to /etc 2021-10-05 06:03:04 +02:00
R. RyanTM
c1313e30fb htop: 3.0.5 -> 3.1.0 2021-09-22 23:40:03 +00:00
Bernardo Meurer
23c81659b5
htop: optionally enable sensors and systemd support on Linux 2021-08-17 18:05:46 -07:00
Daniel Nagy
6cb1865eb3
htop: update platforms metadata 2021-04-01 17:59:50 +02:00
Daniel Nagy
d2aabe8fed
htop: add changelog 2021-04-01 17:59:46 +02:00
R. RyanTM
69a7b210b0 htop: 3.0.4 -> 3.0.5 2021-01-19 00:16:59 +00:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Fabian Affolter
b36e05ef2f htop: 3.0.3 -> 3.0.4 2020-12-22 13:01:33 +01:00
R. RyanTM
2313a2908e htop: 3.0.2 -> 3.0.3 2020-12-07 20:04:18 +00:00
Konrad Borowski
4efe18bdee htop: 3.0.1 -> 3.0.2 2020-10-01 12:27:12 +02:00
Izorkin
d1ffe81e13
htop: 3.0.0 -> 3.0.1 2020-09-03 19:59:38 +03:00
Izorkin
fed86ab2a1
htop: disable use glyphs for checkmarks 2020-08-30 12:09:13 +03:00
Konrad Borowski
19023de862 htop: 2.2.0 -> 3.0.0 2020-08-29 14:49:37 +02:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Jan Tojnar
e4bd8a6fab
htop: switch to python 3 2019-12-29 11:21:08 +01: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
Silvan Mosberger
57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00
Tim Steinbach
ee4835add6
htop: 2.1.0 -> 2.2.0 2018-04-10 18:32:27 -04:00
Bart Brouns
8a72d2a322 htop: 2.02 -> 2.1.0 2018-02-05 15:07:19 +01:00
Tobias Geerinckx-Rice
0f84673f3d
Remove nckx as a maintainer for all packages
Goodbye, and thanks for all the Nix...
2018-01-16 23:00:49 +01:00
mimadrid
0a9eba2aa4
htop: 2.0.1 -> 2.0.2 2016-07-23 00:03:34 +02:00
Peter Simons
8e462995ba Bring my stdenv.lib.maintainers user name in line with my github nick. 2016-05-16 22:49:55 +02:00
Mitch Tishmack
db6dff75bd htop: fix build on darwin 2016-03-21 14:05:01 -05:00
Aneesh Agrawal
16ed322928 htop: fix platforms attribute
See comments at
57dd725e85.

These values are already lists and need to be concatenated together
instead of placed in another list.
2016-03-20 17:27:34 -04:00
zimbatm
57dd725e85 htop: fix supported platforms list 2016-03-20 19:35:59 +00:00
zimbatm
d9e60e4d43 htop: merge both implementations
htop 2.0+ is now cross-platform
2016-03-19 22:20:20 +00:00