about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/netbsd/pkgs/libpci.nix
blob: 21ca0f62fd4e44a5fe1bab822eb80b73f088a9e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ lib, mkDerivation, sys }:

mkDerivation {
  pname = "libpci";
  path = "lib/libpci";
  version = "9.2";
  sha256 = "+IOEO1Bw3/H3iCp3uk3bwsFZbvCqN5Ciz70irnPl8E8=";
  env.NIX_CFLAGS_COMPILE = toString [ "-I." ];
  meta.platforms = lib.platforms.netbsd;
  extraPaths = [ sys.src ];
}