about summary refs log tree commit diff
path: root/pkgs/tools/security/doas-sudo-shim/default.nix
blob: 80b913d4cc9ebe9c6653a36b53cbae0a75c0d485 (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
49
50
51
52
53
54
{ lib
, stdenv
, fetchFromGitHub
, runCommand
, asciidoctor
, coreutils
, gawk
, glibc
, util-linux
, bash
, makeBinaryWrapper
, doas-sudo-shim
}:

stdenv.mkDerivation rec {
  pname = "doas-sudo-shim";
  version = "0.1.1";

  src = fetchFromGitHub {
    owner = "jirutka";
    repo = "doas-sudo-shim";
    rev = "v${version}";
    sha256 = "QYVqGxeWC7Tiz8aNY/LukwG4EW0km/RunGEfkzY/A38=";
  };

  nativeBuildInputs = [ asciidoctor makeBinaryWrapper ];
  buildInputs = [ bash coreutils gawk glibc util-linux ];

  dontConfigure = true;
  dontBuild = true;

  installFlags = [ "DESTDIR=$(out)" "PREFIX=\"\"" ];

  postInstall = ''
    wrapProgram $out/bin/sudo \
      --prefix PATH : ${lib.makeBinPath [ bash coreutils gawk glibc util-linux ]}
  '';

  passthru.tests = {
    helpTest = runCommand "${pname}-helpTest" {} ''
      ${doas-sudo-shim}/bin/sudo -h > $out
      grep -q "Execute a command as another user using doas(1)" $out
    '';
  };

  meta = with lib; {
    description = "A shim for the sudo command that utilizes doas";
    homepage = "https://github.com/jirutka/doas-sudo-shim";
    license = licenses.isc;
    mainProgram = "sudo";
    maintainers = with maintainers; [ dsuetin ];
    platforms = platforms.linux;
  };
}