blob: 0389a5fa83ae66cedd7495b79f71021d6ae05bcd [file] [log] [blame]
Felix Singere255c4c2021-09-28 15:20:17 +02001with import <nixpkgs> {};
2
3stdenv.mkDerivation {
Nico Huberc3b02dc2023-08-12 01:13:45 +02004 name = "flashprog";
Felix Singere255c4c2021-09-28 15:20:17 +02005
6 buildInputs = [
Felix Singer28790a22022-08-25 22:38:10 +02007 gcc
8 gnumake
Felix Singere255c4c2021-09-28 15:20:17 +02009 libftdi1
Felix Singer7c706de2022-05-15 04:06:36 +020010 libjaylink
Felix Singere255c4c2021-09-28 15:20:17 +020011 libusb1
Steve Markgraf61899472023-01-09 23:06:52 +010012 libgpiod
Felix Singere255c4c2021-09-28 15:20:17 +020013 meson
14 ninja
15 pciutils
16 pkg-config
17 ];
18}