mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ 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 = "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;
|
|
};
|
|
}
|