mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
18 lines
466 B
Nix
18 lines
466 B
Nix
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
self: super:
|
|
|
|
let
|
|
nixpkgs = import ./lib/nixpkgs.nix { inherit super; };
|
|
in
|
|
|
|
{
|
|
htop = nixpkgs.htop.overrideAttrs (old: {
|
|
patches = [
|
|
(super.fetchpatch {
|
|
url = "https://raw.githubusercontent.com/termux/termux-packages/master/packages/htop/fix-missing-macros.patch";
|
|
sha256 = "1cljkjagp66xxcjb6y1m9k4v994slfkd0s6fijh02l3rp8ycvjnv";
|
|
})
|
|
];
|
|
});
|
|
}
|