Skip to content

Commit

Permalink
bpytop: init at 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
herrwiese committed Aug 4, 2020
1 parent 64a8d01 commit 616962f
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pkgs/tools/system/bpytop/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{ stdenv, python3Packages, fetchFromGitHub, makeWrapper, substituteAll }:

stdenv.mkDerivation rec {
pname = "bpytop";
version = "1.0.0";

src = fetchFromGitHub {
owner = "aristocratos";
repo = pname;
rev = "v${version}";
sha256 = "0cxyrk5a9j0ymll9h5b6jq48yjy9srcxh4rmsqk8w0d14prmflgg";
};

buildInputs = [ makeWrapper ];
propagatedBuildInputs = with python3Packages; [ python psutil ];

dontBuild = true;

postPatch = ''
sed -i -e "s#/usr/\[local/\]#$out/#g" \
-e "s#/usr/{td}#$out/#g" \
./bpytop.py
'';

installPhase = ''
mkdir -p $out/{bin,libexec,share/bpytop}/
cp -r ./themes $out/share/bpytop/
cp ./bpytop.py $out/libexec/
makeWrapper ${python3Packages.python.interpreter} $out/bin/bpytop \
--add-flags "$out/libexec/bpytop.py" \
--prefix PYTHONPATH : "$PYTHONPATH"
'';

meta = with stdenv.lib; {
description = "A resource monitor; python port of bashtop";
homepage = src.meta.homepage;
license = licenses.apsl20;
maintainers = with maintainers; [ aw ];
platforms = with platforms; linux ++ freebsd ++ darwin;

# https://github.com/NixOS/nixpkgs/pull/94625#issuecomment-668509399
broken = stdenv.isDarwin;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1369,6 +1369,8 @@ in

boxfs = callPackage ../tools/filesystems/boxfs { };

bpytop = callPackage ../tools/system/bpytop { };

brasero-original = lowPrio (callPackage ../tools/cd-dvd/brasero { });

brasero = callPackage ../tools/cd-dvd/brasero/wrapper.nix { };
Expand Down

0 comments on commit 616962f

Please sign in to comment.