xsos:init at 0.7.19
This commit is contained in:
parent
fb41277df3
commit
18bab16610
52
pkgs/os-specific/linux/xsos/default.nix
Normal file
52
pkgs/os-specific/linux/xsos/default.nix
Normal file
@ -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…
Reference in New Issue
Block a user