about summary refs log tree commit diff
path: root/pkgs/misc/drivers/argononed/default.nix
blob: 320aaf3440504bf59d08f9de61b303b3764f2898 (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
42
43
44
45
46
47
48
{ lib, stdenv, fetchFromGitLab, dtc, installShellFiles }:

stdenv.mkDerivation rec {
  pname = "argononed";
  version = "unstable-2022-03-26";

  src = fetchFromGitLab {
    owner = "DarkElvenAngel";
    repo = pname;
    rev = "97c4fa07fc2c09ffc3bd86e0f6319d50fa639578";
    hash = "sha256-5/xUYbprRiwD+FN8V2cUpHxnTbBkEsFG2wfsEXrCrgQ=";
  };

  patches = [ ./fix-hardcoded-reboot-poweroff-paths.patch ];

  postPatch = ''
    patchShebangs configure
  '';

  nativeBuildInputs = [ installShellFiles ];

  buildInputs = [ dtc ];

  installPhase = ''
    runHook preInstall

    install -Dm755 build/argononed $out/bin/argononed
    install -Dm755 build/argonone-cli $out/bin/argonone-cli
    install -Dm755 build/argonone-shutdown $out/lib/systemd/system-shutdown/argonone-shutdown
    install -Dm644 build/argonone.dtbo $out/boot/overlays/argonone.dtbo

    install -Dm644 OS/_common/argononed.service $out/lib/systemd/system/argononed.service
    install -Dm644 OS/_common/argononed.logrotate $out/etc/logrotate.d/argononed
    install -Dm644 LICENSE $out/share/argononed/LICENSE

    installShellCompletion --bash --name argonone-cli OS/_common/argonone-cli-complete.bash

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://gitlab.com/DarkElvenAngel/argononed";
    description = "Replacement daemon for the Argon One Raspberry Pi case";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = [ maintainers.misterio77 ];
  };
}