xsos:init at 0.7.19

main
nixinator 3 years ago
parent fb41277df3
commit 18bab16610
  1. 52
      pkgs/os-specific/linux/xsos/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,52 @@
{ stdenv
, lib
, fetchFromGitHub
, makeWrapper
, installShellFiles
, dmidecode
, ethtool
, pciutils
, multipath-tools
, iproute2
, sysvinit
}:
let
binPath = [
iproute2
dmidecode
ethtool
pciutils
multipath-tools
iproute2
sysvinit
];
in
stdenv.mkDerivation rec {
pname = "xsos";
version = "0.7.19";
src = fetchFromGitHub {
owner = "ryran";
repo = "xsos";
rev = "v${version}";
sha256 = "11cc8z3pz4gl0mwl2fc701mn4cgx50fybygx0rvs9bhvb0jnphay";
};
nativeBuildInputs = [ makeWrapper installShellFiles ];
installPhase = ''
mkdir -p $out/bin
cp -a xsos $out/bin
wrapProgram "$out/bin/xsos" --prefix PATH : ${lib.makeBinPath binPath}
installShellCompletion --bash --name xsos.bash xsos-bash-completion.bash
'';
meta = with lib; {
description = "Summarize system info from sosreports";
homepage = "https://github.com/ryran/xsos";
license = licenses.gpl3;
platforms = [ "i686-linux" "x86_64-linux" ];
maintainers = [ maintainers.nixinator ];
};
}

@ -33815,6 +33815,8 @@ with pkgs;
xcfun = callPackage ../development/libraries/science/chemistry/xcfun { };
xsos = callPackage ../os-specific/linux/xsos { };
zesarux = callPackage ../misc/emulators/zesarux { };
zk = callPackage ../applications/office/zk {};

Loading…
Cancel
Save