vscode-extensions.saoudrizwan.claude-dev: 3.1.11 -> 3.2.5 (#375877)
[NixPkgs.git] / pkgs / by-name / em / em100 / package.nix
bloba57e322e338e84508c4509736b221c02b606ed61
2   curl,
3   fetchgit,
4   lib,
5   libusb1,
6   pkg-config,
7   stdenv,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "em100";
12   version = "0-unstable-2024-11-14";
14   src = fetchgit {
15     url = "https://review.coreboot.org/em100";
16     # No git tags available. Use latest rev from the main branch.
17     rev = "a78b4ba4774f05ecd7af495604b437113596d70e";
18     hash = "sha256-jzP56SMMiWiOynW17CFksi1VhpGt4oYYJrf4Rp9Vfs4=";
19   };
21   nativeBuildInputs = [ pkg-config ];
23   buildInputs = [
24     curl
25     libusb1
26   ];
28   buildFlags = [
29     "em100"
30     "makedpfw"
31   ];
33   installPhase = ''
34     runHook preInstall
35     install -Dm755 em100 $out/bin/em100
36     install -Dm755 makedpfw $out/bin/makedpfw
37     install -Dm644 60-dediprog-em100pro.rules $out/lib/udev/rules.d/dediprog_em100.rules
38     runHook postInstall
39   '';
41   meta = with lib; {
42     homepage = "https://www.coreboot.org";
43     description = "Open source tool for the EM100 SPI flash emulator";
44     license = licenses.gpl2;
45     maintainers = with maintainers; [ felixsinger ];
46     platforms = platforms.linux;
47     mainProgram = "em100";
48   };