aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/shell.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/util/shell.nix b/util/shell.nix
new file mode 100644
index 00000000..d6ddf817
--- /dev/null
+++ b/util/shell.nix
@@ -0,0 +1,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
+ ];
+}