summaryrefslogtreecommitdiffstats
path: root/util/shell.nix
blob: d6ddf81776ae536a469c0d9c6595093203d274a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
with import <nixpkgs> {};

stdenv.mkDerivation {
	name = "flashrom";

	buildInputs = [
		cmocka
		libftdi1
#		libjaylink	# Will be added in NixOS 21.11
		libusb1
		meson
		ninja
		pciutils
		pkg-config
	];
}