about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/fw-ectool/default.nix
blob: a73cc1896ecdc220bdfd22d4ef2be963b6f6a65c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ stdenv
, lib
, fetchFromGitHub
, pkg-config
, hostname
}:

stdenv.mkDerivation {
  pname = "fw-ectool";
  version = "unstable-2022-12-03";

  src = fetchFromGitHub {
    owner = "DHowett";
    repo = "fw-ectool";
    rev = "54c140399bbc3e6a3dce6c9f842727c4128367be";
    hash = "sha256-2teJFz4zcA+USpbVPXMEIHLdmMLem8ik7YrmrSxr/n0=";
  };

  nativeBuildInputs = [
    pkg-config
    hostname
  ];

  buildPhase = ''
    patchShebangs util
    make out=out utils
  '';

  installPhase = ''
    install -D out/util/ectool $out/bin/ectool
  '';

  meta = with lib; {
    description = "EC-Tool adjusted for usage with framework embedded controller";
    homepage = "https://github.com/DHowett/framework-ec";
    license = licenses.bsd3;
    maintainers = [ maintainers.mkg20001 ];
    platforms = platforms.linux;
    mainProgram = "ectool";
  };
}