about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/xsos/default.nix
blob: 56516aee8b7b84303b577297b9c02bbf77b245f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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 ];
  };
}