ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / by-name / hw / hwdata / package.nix
blob2eefae34d4fcdce2e4b66d2b4ecc8798cee1200d
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "hwdata";
9   version = "0.388";
11   src = fetchFromGitHub {
12     owner = "vcrhonek";
13     repo = "hwdata";
14     rev = "v${version}";
15     hash = "sha256-MTXRvqhzNI4afOWLWY6bvv84Q/MXVTsn0w9awRIDAEU=";
16   };
18   configureFlags = [ "--datadir=${placeholder "out"}/share" ];
20   doCheck = false; # this does build machine-specific checks (e.g. enumerates PCI bus)
22   meta = {
23     homepage = "https://github.com/vcrhonek/hwdata";
24     description = "Hardware Database, including Monitors, pci.ids, usb.ids, and video cards";
25     license = lib.licenses.gpl2Plus;
26     maintainers = with lib.maintainers; [ pedrohlc ];
27     platforms = lib.platforms.all;
28   };