File: shell.nix

package info (click to toggle)
flashprog 1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,104 kB
  • sloc: ansic: 61,779; makefile: 919; sh: 310
file content (18 lines) | stat: -rw-r--r-- 195 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
with import <nixpkgs> {};

stdenv.mkDerivation {
	name = "flashprog";

	buildInputs = [
		gcc
		gnumake
		libftdi1
		libjaylink
		libusb1
		libgpiod
		meson
		ninja
		pciutils
		pkg-config
	];
}