chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ls / lshw / package.nix
blobf44aa8f7245e0cb39e818149c1570febbce5604a
1 { stdenv
2 , lib
3 , fetchFromGitHub
4 , hwdata
5 , gtk3
6 , pkg-config
7 , gettext
8 , sqlite # compile GUI
9 , withGUI ? false
12 stdenv.mkDerivation rec {
13   pname = "lshw";
14   # Fix repology.org by not including the prefixed B, otherwise the `pname` attr
15   # gets filled as `lshw-B.XX.XX` in `nix-env --query --available --attr nixpkgs.lshw --meta`
16   # See https://github.com/NixOS/nix/pull/4463 for a definitive fix
17   version = "02.20";
19   src = fetchFromGitHub {
20     owner = "lyonel";
21     repo = pname;
22     rev = "B.${version}";
23     hash = "sha256-4etC7ymMgn1Q4f98DNASv8vn0AT55dYPdacZo6GRDw0=";
24   };
26   nativeBuildInputs = [ pkg-config gettext ];
28   buildInputs = [ hwdata ]
29     ++ lib.optionals withGUI [ gtk3 sqlite ];
31   makeFlags = [
32     "PREFIX=$(out)"
33     "VERSION=${src.rev}"
34   ];
36   buildFlags = [ "all" ] ++ lib.optional withGUI "gui";
38   hardeningDisable = lib.optionals stdenv.hostPlatform.isStatic [ "fortify" ];
40   installTargets = [ "install" ] ++ lib.optional withGUI "install-gui";
42   enableParallelBuilding = true;
44   meta = with lib; {
45     changelog = "https://github.com/lyonel/lshw/blob/master/docs/Changelog";
46     description = "Provide detailed information on the hardware configuration of the machine";
47     homepage = "https://ezix.org/project/wiki/HardwareLiSter";
48     license = licenses.gpl2;
49     mainProgram = "lshw";
50     maintainers = with maintainers; [ thiagokokada ];
51     platforms = platforms.linux;
52   };